diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-10-04 22:23:53 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-10-04 22:23:53 +0000 |
commit | 693163e74d047a05799eaaf619ba4972fdc3a0e9 (patch) | |
tree | 91792ee97d22b71304cd5687799e9123cf9c1b8a /lib/CodeGen | |
parent | c055a9191fbe31c4200a3868272103660669b0c7 (diff) |
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
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index d6dcf482ab..1d2b25a5ac 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -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 |