big endian 32-bit systems (e.g. ppc32) want to return the high reg first, not
authorChris Lattner <sabre@nondot.org>
Tue, 6 Mar 2007 20:01:06 +0000 (20:01 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 6 Mar 2007 20:01:06 +0000 (20:01 +0000)
the lo-reg first.  This is fallout from my ppc calling conv change yesterday,
it fixes test/ExecutionEngine/2003-05-06-LivenessClobber.llx

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34983 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/LegalizeDAG.cpp

index 84a381bf633256054231111650b37d4c1d13824c..8c90cfb6dacc92b1a1671a826576f9c3de9fcf2b 100644 (file)
@@ -1675,6 +1675,11 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
         if (Tmp2.getValueType() != MVT::Vector) {
           SDOperand Lo, Hi;
           ExpandOp(Tmp2, Lo, Hi);
+
+          // Big endian systems want the hi reg first.
+          if (!TLI.isLittleEndian())
+            std::swap(Lo, Hi);
+          
           if (Hi.Val)
             Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
           else