mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Fix some typos that can cause a flag value to have more than one use.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30727 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c055a9191f
commit
693163e74d
@ -1777,8 +1777,8 @@ SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
|
||||
assert(Regs.size() == 2 &&
|
||||
"Cannot expand to more than 2 elts yet!");
|
||||
SDOperand Hi = DAG.getCopyFromReg(Chain, Regs[1], RegVT, Flag);
|
||||
Chain = Val.getValue(1);
|
||||
Flag = Val.getValue(2);
|
||||
Chain = Hi.getValue(1);
|
||||
Flag = Hi.getValue(2);
|
||||
if (DAG.getTargetLoweringInfo().isLittleEndian())
|
||||
return DAG.getNode(ISD::BUILD_PAIR, ValueVT, Val, Hi);
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user