diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-05-07 01:27:25 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-05-07 01:27:25 +0000 |
commit | d0c1f9c932e9da29ea4c6e9a863f1567c6e61477 (patch) | |
tree | d8ca5a13c987cd860a699f24fb069f41289ec91b /lib/CodeGen/LLVMTargetMachine.cpp | |
parent | 116b27444a206a2831d88fea5ce34ced8184ceca (diff) |
Temporarily revert r71010. It was causing massive failures during self-hosting.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71138 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LLVMTargetMachine.cpp')
-rw-r--r-- | lib/CodeGen/LLVMTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LLVMTargetMachine.cpp b/lib/CodeGen/LLVMTargetMachine.cpp index 5f19660a26..faaa41b68b 100644 --- a/lib/CodeGen/LLVMTargetMachine.cpp +++ b/lib/CodeGen/LLVMTargetMachine.cpp @@ -193,7 +193,7 @@ bool LLVMTargetMachine::addCommonCodeGenPasses(PassManagerBase &PM, // Perform stack slot coloring. if (OptLevel != CodeGenOpt::None) - PM.add(createStackSlotColoringPass(OptLevel >= CodeGenOpt::Aggressive)); + PM.add(createStackSlotColoringPass()); if (PrintMachineCode) // Print the register-allocated code PM.add(createMachineFunctionPrinterPass(cerr)); |