Skip to content
Snippets Groups Projects
Commit c3f679f2 authored by Chris Lattner's avatar Chris Lattner
Browse files

Remove support for const pool merging, which is obsolete now.

llvm-svn: 471
parent 8564037d
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ enum Opts { ...@@ -34,7 +34,7 @@ enum Opts {
dce, constprop, inlining, strip, mstrip, dce, constprop, inlining, strip, mstrip,
// More powerful optimizations // More powerful optimizations
indvars, sccp, cpm, adce, raise, indvars, sccp, adce, raise,
}; };
struct { struct {
...@@ -48,7 +48,6 @@ struct { ...@@ -48,7 +48,6 @@ struct {
{ mstrip , DoFullSymbolStripping }, { mstrip , DoFullSymbolStripping },
{ indvars , DoInductionVariableCannonicalize }, { indvars , DoInductionVariableCannonicalize },
{ sccp , DoSCCP }, { sccp , DoSCCP },
{ cpm , DoConstantPoolMerging },
{ adce , DoADCE }, { adce , DoADCE },
{ raise , DoRaiseRepresentation }, { raise , DoRaiseRepresentation },
}; };
...@@ -66,7 +65,6 @@ cl::EnumList<enum Opts> OptimizationList(cl::NoFlags, ...@@ -66,7 +65,6 @@ cl::EnumList<enum Opts> OptimizationList(cl::NoFlags,
clEnumVal(mstrip , "Strip Module Symbols"), clEnumVal(mstrip , "Strip Module Symbols"),
clEnumVal(indvars , "Simplify Induction Variables"), clEnumVal(indvars , "Simplify Induction Variables"),
clEnumVal(sccp , "Sparse Conditional Constant Propogation"), clEnumVal(sccp , "Sparse Conditional Constant Propogation"),
clEnumVal(cpm , "Constant Pool Merging"),
clEnumVal(adce , "Agressive DCE"), clEnumVal(adce , "Agressive DCE"),
clEnumVal(raise , "Raise to Higher Level"), clEnumVal(raise , "Raise to Higher Level"),
0); 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment