Lower ConstantExpressions before the code generator.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14497 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/PowerPC/PPCTargetMachine.cpp b/lib/Target/PowerPC/PPCTargetMachine.cpp
index f6dd822..ad60cb6 100644
--- a/lib/Target/PowerPC/PPCTargetMachine.cpp
+++ b/lib/Target/PowerPC/PPCTargetMachine.cpp
@@ -52,6 +52,8 @@
   // FIXME: Implement the switch instruction in the instruction selector!
   PM.add(createLowerSwitchPass());
 
+  PM.add(createLowerConstantExpressionsPass());
+
   PM.add(createPPCSimpleInstructionSelector(*this));
 
   if (PrintMachineCode)
@@ -81,6 +83,8 @@
   // FIXME: Implement the switch instruction in the instruction selector!
   PM.add(createLowerSwitchPass());
 
+  PM.add(createLowerConstantExpressionsPass());
+
   PM.add(createPPCSimpleInstructionSelector(TM));
   PM.add(createRegisterAllocator());
   PM.add(createPrologEpilogCodeInserter());