Run DCE before cleanupGCCoutput which will cause some dead types (like FILE) to be...
authorChris Lattner <sabre@nondot.org>
Fri, 7 Dec 2001 04:25:36 +0000 (04:25 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 7 Dec 2001 04:25:36 +0000 (04:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1429 91177308-0d34-0410-b5e6-96231b3b80d8

tools/gccas/gccas.cpp

index 376aff083a4322d4288091916f77ea99f8768009..a1eeedb26c5c6b88b3d7ebdc9ba8d8a455a95a53 100644 (file)
@@ -11,7 +11,6 @@
 #include "llvm/Assembly/Parser.h"
 #include "llvm/Transforms/CleanupGCCOutput.h"
 #include "llvm/Transforms/LevelChange.h"
-#include "llvm/Optimizations/ConstantProp.h"
 #include "llvm/Optimizations/DCE.h"
 #include "llvm/Transforms/ConstantMerge.h"
 #include "llvm/Transforms/Scalar/IndVarSimplify.h"
@@ -64,10 +63,11 @@ int main(int argc, char **argv) {
   // a little bit.  Do this now.
   //
   vector<Pass*> Passes;
-  Passes.push_back(new CleanupGCCOutput());        // Fix gccisms
+  Passes.push_back(new opt::DeadCodeElimination());  // Remove Dead code/vars
+  Passes.push_back(new CleanupGCCOutput());          // Fix gccisms
   Passes.push_back(new InductionVariableSimplify()); // Simplify indvars
-  Passes.push_back(new RaisePointerReferences());  // Fix general low level code
-  Passes.push_back(new ConstantMerge());           // Merge dup global constants
+  Passes.push_back(new RaisePointerReferences());    // Fix general low level code
+  Passes.push_back(new ConstantMerge());             // Merge dup global constants
 
   // Run our queue of passes all at once now, efficiently.  This form of
   // runAllPasses frees the Pass objects after runAllPasses completes.