diff options
author | Chris Lattner <sabre@nondot.org> | 2001-07-23 23:02:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-07-23 23:02:51 +0000 |
commit | 3dfcf026f00ffe3234525498ab883c1f31ab0ff9 (patch) | |
tree | 67d024741cc27beba600068aa721119944a6cf0d | |
parent | 4fdde2cc628c1d6ac86ab4110b1391906b2d56ac (diff) | |
download | bcm5719-llvm-3dfcf026f00ffe3234525498ab883c1f31ab0ff9.tar.gz bcm5719-llvm-3dfcf026f00ffe3234525498ab883c1f31ab0ff9.zip |
Change option name slightly
llvm-svn: 287
-rw-r--r-- | llvm/tools/opt/opt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/opt/opt.cpp b/llvm/tools/opt/opt.cpp index 7260adb62fc..2183eefb0cc 100644 --- a/llvm/tools/opt/opt.cpp +++ b/llvm/tools/opt/opt.cpp @@ -61,7 +61,7 @@ cl::Alias QuietA ("quiet", "Alias for -q", cl::NoFlags, Quiet); cl::EnumList<enum Opts> OptimizationList(cl::NoFlags, clEnumVal(dce , "Dead Code Elimination"), clEnumVal(constprop, "Simple Constant Propogation"), - clEnumValN(inlining , "inline", "Method Inlining"), + clEnumValN(inlining , "inline", "Method Integration"), clEnumVal(strip , "Strip Symbols"), clEnumVal(mstrip , "Strip Module Symbols"), clEnumVal(indvars , "Simplify Induction Variables"), |