Correct the SrcValue information in the Expand code for va_copy.
authorDan Gohman <gohman@apple.com>
Thu, 17 Apr 2008 02:09:26 +0000 (02:09 +0000)
committerDan Gohman <gohman@apple.com>
Thu, 17 Apr 2008 02:09:26 +0000 (02:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49839 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/LegalizeDAG.cpp

index 377c627b23e06402715687c28c98d454c60740c9..18d1d1853e0fd7363623d93b22dca82ce107adab 100644 (file)
@@ -3283,8 +3283,8 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
       // output, returning the chain.
       const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
       const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
-      Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VD, 0);
-      Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VS, 0);
+      Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
+      Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
       break;
     }
     break;