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 | c3f679f2fe3d5f6af1ebdae148ae4f9e69a0d329 (patch) | |
tree | b766ef637acabef5dd84d861d2d16d34b4f53903 /llvm/tools | |
parent | 8564037d97411c76850e089753b801d8602dc595 (diff) | |
download | bcm5719-llvm-c3f679f2fe3d5f6af1ebdae148ae4f9e69a0d329.tar.gz bcm5719-llvm-c3f679f2fe3d5f6af1ebdae148ae4f9e69a0d329.zip |
Remove support for const pool merging, which is obsolete now.
llvm-svn: 471
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/opt/opt.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/tools/opt/opt.cpp b/llvm/tools/opt/opt.cpp index 2183eefb0cc..973a78ff8d3 100644 --- a/llvm/tools/opt/opt.cpp +++ b/llvm/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); |