diff options
author | Dan Gohman <gohman@apple.com> | 2010-07-06 20:24:04 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-07-06 20:24:04 +0000 |
commit | 34396292396879083b196c2f929d6903104379f8 (patch) | |
tree | 37658fcecc83c8be1bb329b5795e93fac4b9cf0a /llvm/lib/Target/X86/X86TargetMachine.cpp | |
parent | c96c37f6fdf64faa8244e5692f30a059b62998be (diff) | |
download | bcm5719-llvm-34396292396879083b196c2f929d6903104379f8.tar.gz bcm5719-llvm-34396292396879083b196c2f929d6903104379f8.zip |
Reapply r107655 with fixes; insert the pseudo instruction into
the block before calling the expansion hook. And don't
put EFLAGS in a mbb's live-in list twice.
llvm-svn: 107691
Diffstat (limited to 'llvm/lib/Target/X86/X86TargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/X86/X86TargetMachine.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/X86TargetMachine.cpp b/llvm/lib/Target/X86/X86TargetMachine.cpp index f2c50583c95..a0d7cf66193 100644 --- a/llvm/lib/Target/X86/X86TargetMachine.cpp +++ b/llvm/lib/Target/X86/X86TargetMachine.cpp @@ -173,14 +173,14 @@ bool X86TargetMachine::addInstSelector(PassManagerBase &PM, // Install an instruction selector. PM.add(createX86ISelDag(*this, OptLevel)); - // Install a pass to insert x87 FP_REG_KILL instructions, as needed. - PM.add(createX87FPRegKillInserterPass()); - return false; } bool X86TargetMachine::addPreRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel) { + // Install a pass to insert x87 FP_REG_KILL instructions, as needed. + PM.add(createX87FPRegKillInserterPass()); + PM.add(createX86MaxStackAlignmentHeuristicPass()); return false; // -print-machineinstr shouldn't print after this. } |