mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-19 06:31:18 +00:00
fastcc functions that return double values now return them in xmm0 on x86-32.
This implements CodeGen/X86/fp-stack-ret.ll:test[23] git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34592 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
113296ba51
commit
5e265b29ea
@ -434,7 +434,7 @@ X86TargetLowering::X86TargetLowering(TargetMachine &TM)
|
||||
static void GetRetValueLocs(const MVT::ValueType *VTs, unsigned NumVTs,
|
||||
unsigned *ResultRegs,
|
||||
const X86Subtarget *Subtarget,
|
||||
unsigned CallingConv) {
|
||||
unsigned CC) {
|
||||
if (NumVTs == 0) return;
|
||||
|
||||
if (NumVTs == 2) {
|
||||
@ -456,6 +456,8 @@ static void GetRetValueLocs(const MVT::ValueType *VTs, unsigned NumVTs,
|
||||
case MVT::f64:
|
||||
if (Subtarget->is64Bit())
|
||||
Reg = X86::XMM0; // FP values in X86-64 go in XMM0.
|
||||
else if (CC == CallingConv::Fast)
|
||||
Reg = X86::XMM0; // FP values in X86-32 with fastcc go in XMM0.
|
||||
else
|
||||
Reg = X86::ST0; // FP values in X86-32 go in ST0.
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user