diff options
author | Mehdi Amini <mehdi.amini@apple.com> | 2016-12-23 23:54:34 +0000 |
---|---|---|
committer | Mehdi Amini <mehdi.amini@apple.com> | 2016-12-23 23:54:34 +0000 |
commit | 95c1f915453ea311bfcd02a68c5e669b968b876c (patch) | |
tree | dd658680bdee0b93ff7d3eb5b3464a66c5df1f08 | |
parent | 14f19bd0123d50b0f3016635b78a37c55f198e53 (diff) | |
download | bcm5719-llvm-95c1f915453ea311bfcd02a68c5e669b968b876c.tar.gz bcm5719-llvm-95c1f915453ea311bfcd02a68c5e669b968b876c.zip |
llvm-lto2: remove leading '-' for cl::opt declaration
llvm-svn: 290464
-rw-r--r-- | llvm/tools/llvm-lto2/llvm-lto2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-lto2/llvm-lto2.cpp b/llvm/tools/llvm-lto2/llvm-lto2.cpp index 1fa22a01bea..c09311a05b9 100644 --- a/llvm/tools/llvm-lto2/llvm-lto2.cpp +++ b/llvm/tools/llvm-lto2/llvm-lto2.cpp @@ -64,7 +64,7 @@ static cl::opt<bool> "import files for the " "distributed backend case")); -static cl::opt<int> Threads("-thinlto-threads", +static cl::opt<int> Threads("thinlto-threads", cl::init(llvm::heavyweight_hardware_concurrency())); static cl::list<std::string> SymbolResolutions( |