diff options
author | Dan Gohman <gohman@apple.com> | 2008-11-12 22:55:05 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-11-12 22:55:05 +0000 |
commit | bc5cbb8be9d935240be5a57a8f37c5258a9d0563 (patch) | |
tree | 58569a85b1b8597fd278d30f126dc74bb30e2425 /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | cb5798285aa3a3cd93448beda6264152c761e8e3 (diff) |
Move the code that inserts X87 FP_REG_KILL instructions from a
special-purpose hook to a new pass. Also, add check to see if any
x87 virtual registers are used, to avoid doing any work in the
common case that no x87 code is needed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59190 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 3114d1b9bb..23822fa7fb 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -840,9 +840,6 @@ void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn, MachineFunction &MF, void SelectionDAGISel::FinishBasicBlock() { - // Perform target specific isel post processing. - InstructionSelectPostProcessing(); - DOUT << "Target-post-processed machine code:\n"; DEBUG(BB->dump()); |