diff options
author | Chris Lattner <sabre@nondot.org> | 2001-09-07 16:59:35 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-09-07 16:59:35 +0000 |
commit | 6dcf92a1508e769417d4ff4cf1f3fb1ce387dc3f (patch) | |
tree | 63b8c0edb5896f63e61a905ef683eef3932e8830 | |
parent | 454bd1f9a7db8c9f82f40ae26a460299d333827f (diff) |
Remove support for const pool merging, which is obsolete now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@471 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/opt/opt.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp index 2183eefb0c..973a78ff8d 100644 --- a/tools/opt/opt.cpp +++ b/tools/opt/opt.cpp @@ -34,7 +34,7 @@ enum Opts { dce, constprop, inlining, strip, mstrip, // More powerful optimizations - indvars, sccp, cpm, adce, raise, + indvars, sccp, adce, raise, }; struct { @@ -48,7 +48,6 @@ struct { { mstrip , DoFullSymbolStripping }, { indvars , DoInductionVariableCannonicalize }, { sccp , DoSCCP }, - { cpm , DoConstantPoolMerging }, { adce , DoADCE }, { raise , DoRaiseRepresentation }, }; @@ -66,7 +65,6 @@ cl::EnumList<enum Opts> OptimizationList(cl::NoFlags, clEnumVal(mstrip , "Strip Module Symbols"), clEnumVal(indvars , "Simplify Induction Variables"), clEnumVal(sccp , "Sparse Conditional Constant Propogation"), - clEnumVal(cpm , "Constant Pool Merging"), clEnumVal(adce , "Agressive DCE"), clEnumVal(raise , "Raise to Higher Level"), 0); |