Changed option name from inline-threshold to basic-inline-threshold because
authorMon P Wang <wangmp@apple.com>
Mon, 23 Feb 2009 07:07:56 +0000 (07:07 +0000)
committerMon P Wang <wangmp@apple.com>
Mon, 23 Feb 2009 07:07:56 +0000 (07:07 +0000)
inline-threshold option is used by the inliner.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65309 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/BasicInliner.cpp

index 8e51dc09e24958d5d79e56ad566071a1a98cbc01..ef37614997cfd01cab8b26668b088df1d5cc7e0e 100644 (file)
@@ -27,7 +27,7 @@
 using namespace llvm;
 
 static cl::opt<unsigned>     
-BasicInlineThreshold("inline-threshold", cl::Hidden, cl::init(200),
+BasicInlineThreshold("basic-inline-threshold", cl::Hidden, cl::init(200),
    cl::desc("Control the amount of basic inlining to perform (default = 200)"));
 
 namespace llvm {