From: Chris Lattner Date: Sat, 8 Jan 2005 20:51:36 +0000 (+0000) Subject: Okay 15th time is the charm. Looking at the vector size is useless as it X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b0802651bf2d17f4ee274cea7264e89bff404ce9;p=oota-llvm.git Okay 15th time is the charm. Looking at the vector size is useless as it gets clobbered by a previous statement. This fixes all calls finally. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19399 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86ISelPattern.cpp b/lib/Target/X86/X86ISelPattern.cpp index 8484b8a9c6e..54d9a6d0c2e 100644 --- a/lib/Target/X86/X86ISelPattern.cpp +++ b/lib/Target/X86/X86ISelPattern.cpp @@ -208,7 +208,7 @@ X86TargetLowering::LowerCallTo(SDOperand Chain, RetVals.push_back(MVT::Other); SDOperand TheCall = SDOperand(DAG.getCall(RetVals, Chain, Callee), 0); - Chain = TheCall.getValue(RetVals.size()+1); + Chain = TheCall.getValue(RetTyVT != MVT::isVoid); Chain = DAG.getNode(ISD::ADJCALLSTACKUP, MVT::Other, Chain, DAG.getConstant(NumBytes, getPointerTy())); return std::make_pair(TheCall, Chain);