mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-26 07:34:06 +00:00
big endian 32-bit systems (e.g. ppc32) want to return the high reg first, not
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
This commit is contained in:
parent
622adea47f
commit
edf2e8da25
@ -1675,6 +1675,11 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
|
|||||||
if (Tmp2.getValueType() != MVT::Vector) {
|
if (Tmp2.getValueType() != MVT::Vector) {
|
||||||
SDOperand Lo, Hi;
|
SDOperand Lo, Hi;
|
||||||
ExpandOp(Tmp2, Lo, Hi);
|
ExpandOp(Tmp2, Lo, Hi);
|
||||||
|
|
||||||
|
// Big endian systems want the hi reg first.
|
||||||
|
if (!TLI.isLittleEndian())
|
||||||
|
std::swap(Lo, Hi);
|
||||||
|
|
||||||
if (Hi.Val)
|
if (Hi.Val)
|
||||||
Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
|
Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user