mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Search the whole instruction for tied operands.
Implicit uses can be dynamically tied to defs. This will soon be used for predicated instructions on ARM. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163177 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
03fe8f6ab6
commit
f363ebdb03
@ -1202,8 +1202,7 @@ bool TwoAddressInstructionPass::
|
||||
collectTiedOperands(MachineInstr *MI, TiedOperandMap &TiedOperands) {
|
||||
const MCInstrDesc &MCID = MI->getDesc();
|
||||
bool AnyOps = false;
|
||||
unsigned NumOps = MI->isInlineAsm() ?
|
||||
MI->getNumOperands() : MCID.getNumOperands();
|
||||
unsigned NumOps = MI->getNumOperands();
|
||||
|
||||
for (unsigned SrcIdx = 0; SrcIdx < NumOps; ++SrcIdx) {
|
||||
unsigned DstIdx = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user