aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-05-07 22:15:01 +0000
committerChris Lattner <sabre@nondot.org>2002-05-07 22:15:01 +0000
commit73e6298c9a645b60306e67dbd24ebc408c1b9d5d (patch)
treee087fb5e2895b8a4872ccd776fe7a39d301f6707
parent8ca21c245c5b4ce4a925344214d95b24cd957058 (diff)
downloadexternal_llvm-73e6298c9a645b60306e67dbd24ebc408c1b9d5d.zip
external_llvm-73e6298c9a645b60306e67dbd24ebc408c1b9d5d.tar.gz
external_llvm-73e6298c9a645b60306e67dbd24ebc408c1b9d5d.tar.bz2
Spell aggressive correctly
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2551 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/opt/opt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp
index 7ced025..89b1f1d 100644
--- a/tools/opt/opt.cpp
+++ b/tools/opt/opt.cpp
@@ -78,7 +78,7 @@ struct {
{ indvars , createIndVarSimplifyPass },
{ instcombine, createInstructionCombiningPass },
{ sccp , createSCCPPass },
- { adce , createAgressiveDCEPass },
+ { adce , createAggressiveDCEPass },
{ raise , createRaisePointerReferencesPass },
{ mem2reg , createPromoteMemoryToRegister },
{ lowerrefs, createDecomposeMultiDimRefsPass },
@@ -125,7 +125,7 @@ cl::EnumList<enum Opts> OptimizationList(cl::NoFlags,
clEnumVal(indvars , "Simplify Induction Variables"),
clEnumVal(instcombine, "Combine redundant instructions"),
clEnumVal(sccp , "Sparse Conditional Constant Propogation"),
- clEnumVal(adce , "Agressive DCE"),
+ clEnumVal(adce , "Aggressive DCE"),
clEnumVal(mem2reg , "Promote alloca locations to registers"),
clEnumVal(internalize, "Mark all fn's internal except for main"),