From: Duncan Sands Date: Wed, 5 Nov 2008 07:17:27 +0000 (+0000) Subject: Fix thinko in ppcf128 expansion of truncating store. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c45cb9f739bd5d541576212f1e0cc2689a731ab8;p=oota-llvm.git Fix thinko in ppcf128 expansion of truncating store. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58753 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp b/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp index 9e31699c559..903de808a62 100644 --- a/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp +++ b/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp @@ -1183,7 +1183,7 @@ SDValue DAGTypeLegalizer::ExpandFloatOp_STORE(SDNode *N, unsigned OpNo) { SDValue Lo, Hi; GetExpandedOp(ST->getValue(), Lo, Hi); - return DAG.getTruncStore(Chain, Lo, Ptr, + return DAG.getTruncStore(Chain, Hi, Ptr, ST->getSrcValue(), ST->getSrcValueOffset(), ST->getMemoryVT(), ST->isVolatile(), ST->getAlignment());