Run DCE AFTER SCCP and GCSE!
authorChris Lattner <sabre@nondot.org>
Mon, 6 May 2002 03:04:17 +0000 (03:04 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 6 May 2002 03:04:17 +0000 (03:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2476 91177308-0d34-0410-b5e6-96231b3b80d8

tools/gccas/gccas.cpp

index ce22ccdaf3b1e727d681c11c344d22399637f7e8..a292a71afedb0e591340f56c380c58562839bd63 100644 (file)
@@ -83,9 +83,9 @@ int main(int argc, char **argv) {
     Passes.add(createRaisePointerReferencesPass()); // Eliminate casts
     Passes.add(createPromoteMemoryToRegister());    // Promote alloca's to regs
     Passes.add(createInstructionCombiningPass());   // Combine silly seq's
-    Passes.add(createDeadCodeEliminationPass());    // Remove Dead code/vars
     Passes.add(createSCCPPass());                   // Constant prop with SCCP
     Passes.add(createGCSEPass());                   // Remove common subexprs
+    Passes.add(createDeadCodeEliminationPass());    // Remove Dead code/vars
   }
   Passes.add(new WriteBytecodePass(&Out));        // Write bytecode to file...