prevent latent switch creation


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24413 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/Alpha/AlphaTargetMachine.cpp b/lib/Target/Alpha/AlphaTargetMachine.cpp
index fd9cbe5..21a7f98 100644
--- a/lib/Target/Alpha/AlphaTargetMachine.cpp
+++ b/lib/Target/Alpha/AlphaTargetMachine.cpp
@@ -79,7 +79,9 @@
   if (FileType != TargetMachine::AssemblyFile) return true;
 
   PM.add(createLoopStrengthReducePass());
+  PM.add(createCFGSimplificationPass());
 
+ 
   // FIXME: Implement efficient support for garbage collection intrinsics.
   PM.add(createLowerGCPass());
 
@@ -92,8 +94,6 @@
   // Make sure that no unreachable blocks are instruction selected.
   PM.add(createUnreachableBlockEliminationPass());
 
-  PM.add(createCFGSimplificationPass());
-
   if (EnableAlphaDAG)
     PM.add(createAlphaISelDag(*this));
   else