-raise includes constprop and dce
authorChris Lattner <sabre@nondot.org>
Mon, 26 Nov 2001 19:37:43 +0000 (19:37 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 26 Nov 2001 19:37:43 +0000 (19:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1397 91177308-0d34-0410-b5e6-96231b3b80d8

tools/gccas/gccas.cpp

index d01e4ed226ae26ee921b8986c49bc6e3064d70be..e19508fdacdf4943cf64ebaca29137d812c188b4 100644 (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