Changed option name from inline-threshold to basic-inline-threshold because
inline-threshold option is used by the inliner.
llvm-svn: 65309
diff --git a/llvm/lib/Transforms/Utils/BasicInliner.cpp b/llvm/lib/Transforms/Utils/BasicInliner.cpp
index 8e51dc0..ef37614 100644
--- a/llvm/lib/Transforms/Utils/BasicInliner.cpp
+++ b/llvm/lib/Transforms/Utils/BasicInliner.cpp
@@ -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 {