diff options
author | Rui Ueyama <ruiu@google.com> | 2018-04-13 18:26:06 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2018-04-13 18:26:06 +0000 |
commit | 197194b6c9829b9cdc5222939dd8cb25af05b3ca (patch) | |
tree | 385d75220b3266383a2a7f3c3d1467dbca4ca04b /llvm/tools/llvm-strings/llvm-strings.cpp | |
parent | a4e874c516517a5e479599755734a734faefe128 (diff) | |
download | bcm5719-llvm-197194b6c9829b9cdc5222939dd8cb25af05b3ca.tar.gz bcm5719-llvm-197194b6c9829b9cdc5222939dd8cb25af05b3ca.zip |
Define InitLLVM to do common initialization all at once.
We have a few functions that virtually all command wants to run on
process startup/shutdown. This patch adds InitLLVM class to do that
all at once, so that we don't need to copy-n-paste boilerplate code
to each llvm command's main() function.
Differential Revision: https://reviews.llvm.org/D45602
llvm-svn: 330046
Diffstat (limited to 'llvm/tools/llvm-strings/llvm-strings.cpp')
-rw-r--r-- | llvm/tools/llvm-strings/llvm-strings.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/tools/llvm-strings/llvm-strings.cpp b/llvm/tools/llvm-strings/llvm-strings.cpp index 638d58fce2b..8e2d213bcc7 100644 --- a/llvm/tools/llvm-strings/llvm-strings.cpp +++ b/llvm/tools/llvm-strings/llvm-strings.cpp @@ -16,10 +16,9 @@ #include "llvm/Support/CommandLine.h" #include "llvm/Support/Error.h" #include "llvm/Support/Format.h" +#include "llvm/Support/InitLLVM.h" #include "llvm/Support/MemoryBuffer.h" -#include "llvm/Support/PrettyStackTrace.h" #include "llvm/Support/Program.h" -#include "llvm/Support/Signals.h" #include <cctype> #include <string> @@ -94,8 +93,7 @@ static void strings(raw_ostream &OS, StringRef FileName, StringRef Contents) { } int main(int argc, char **argv) { - sys::PrintStackTraceOnErrorSignal(argv[0]); - PrettyStackTraceProgram X(argc, argv); + InitLLVM X(argc, argv); cl::ParseCommandLineOptions(argc, argv, "llvm string dumper\n"); if (MinLength == 0) { |