-raise includes constprop and dce

llvm-svn: 1397
This commit is contained in:
Chris Lattner 2001-11-26 19:37:43 +00:00
parent 54d5928569
commit 5af7da01b0
1 changed files with 0 additions and 3 deletions

View File

@ -64,10 +64,7 @@ int main(int argc, char **argv) {
//
vector<Pass*> Passes;
Passes.push_back(new CleanupGCCOutput()); // Fix gccisms
Passes.push_back(new opt::ConstantPropogation());// Trivial const prop
Passes.push_back(new RaisePointerReferences()); // Fix general low level code
Passes.push_back(new opt::ConstantPropogation());// Trivial const prop
Passes.push_back(new opt::DeadCodeElimination());// Trivial DCE
Passes.push_back(new ConstantMerge()); // Merge dup global constants
// Run our queue of passes all at once now, efficiently. This form of