diff options
author | Dan Gohman <gohman@apple.com> | 2010-04-30 00:32:51 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-04-30 00:32:51 +0000 |
commit | 71cee76d26bdbb50d86a206717fe5b4265b396e7 (patch) | |
tree | eb219665e418efcd209d3be1d5242790ce0c23e6 /lib/CodeGen/SelectionDAG/InstrEmitter.cpp | |
parent | 8c818fc35cc7675e8c1743359f2ac23006d09c4c (diff) | |
download | external_llvm-71cee76d26bdbb50d86a206717fe5b4265b396e7.tar.gz external_llvm-71cee76d26bdbb50d86a206717fe5b4265b396e7.tar.bz2 external_llvm-71cee76d26bdbb50d86a206717fe5b4265b396e7.zip |
Temporarily disable SelectionDAG kill flags, which are causing trouble.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102680 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/InstrEmitter.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/InstrEmitter.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/InstrEmitter.cpp b/lib/CodeGen/SelectionDAG/InstrEmitter.cpp index e944dfd17d..bf65cb56f1 100644 --- a/lib/CodeGen/SelectionDAG/InstrEmitter.cpp +++ b/lib/CodeGen/SelectionDAG/InstrEmitter.cpp @@ -296,6 +296,7 @@ InstrEmitter::AddRegisterOperand(MachineInstr *MI, SDValue Op, } } +#if 0 // If this value has only one use, that use is a kill. This is a // conservative approximation. Tied operands are never killed, so we need // to check that. And that means we need to determine the index of the @@ -306,6 +307,9 @@ InstrEmitter::AddRegisterOperand(MachineInstr *MI, SDValue Op, --Idx; bool isTied = MI->getDesc().getOperandConstraint(Idx, TOI::TIED_TO) != -1; bool isKill = Op.hasOneUse() && !isTied; +#else + bool isKill = false; +#endif MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef, false/*isImp*/, isKill, |