From: Evan Cheng Date: Wed, 4 Oct 2006 22:23:53 +0000 (+0000) Subject: Fix some typos that can cause a flag value to have more than one use. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=693163e74d047a05799eaaf619ba4972fdc3a0e9;p=oota-llvm.git 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 --- diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index d6dcf482abd..1d2b25a5ac1 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