1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Changed option name from inline-threshold to basic-inline-threshold because

inline-threshold option is used by the inliner.

llvm-svn: 65309
This commit is contained in:
Mon P Wang 2009-02-23 07:07:56 +00:00
parent 29437eb4c3
commit 75d957dba4

View File

@ -27,7 +27,7 @@
using namespace llvm; using namespace llvm;
static cl::opt<unsigned> 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)")); cl::desc("Control the amount of basic inlining to perform (default = 200)"));
namespace llvm { namespace llvm {