Spell aggressive correctly
authorChris Lattner <sabre@nondot.org>
Tue, 7 May 2002 22:15:01 +0000 (22:15 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 7 May 2002 22:15:01 +0000 (22:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2551 91177308-0d34-0410-b5e6-96231b3b80d8

tools/opt/opt.cpp

index 7ced025763be288b643833c5b82a0b17919fe8a3..89b1f1df934e73e13fe77e3a4b62e57ccc1fac5b 100644 (file)
@@ -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"),