mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Add low-level option for avoiding float stores from va_start until
soft-float is properly supported. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215221 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c9def6b938
commit
6f3e49e03c
@ -39,6 +39,10 @@
|
||||
#include "llvm/Target/TargetOptions.h"
|
||||
using namespace llvm;
|
||||
|
||||
// FIXME: Remove this once soft-float is supported.
|
||||
static cl::opt<bool> DisablePPCFloatInVariadic("disable-ppc-float-in-variadic",
|
||||
cl::desc("disable saving float registers for va_start on PPC"), cl::Hidden);
|
||||
|
||||
static cl::opt<bool> DisablePPCPreinc("disable-ppc-preinc",
|
||||
cl::desc("disable preincrement load/store generation on PPC"), cl::Hidden);
|
||||
|
||||
@ -2494,7 +2498,9 @@ PPCTargetLowering::LowerFormalArguments_32SVR4(
|
||||
PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
|
||||
PPC::F8
|
||||
};
|
||||
const unsigned NumFPArgRegs = array_lengthof(FPArgRegs);
|
||||
unsigned NumFPArgRegs = array_lengthof(FPArgRegs);
|
||||
if (DisablePPCFloatInVariadic)
|
||||
NumFPArgRegs = 0;
|
||||
|
||||
FuncInfo->setVarArgsNumGPR(CCInfo.getFirstUnallocated(GPArgRegs,
|
||||
NumGPArgRegs));
|
||||
|
Loading…
Reference in New Issue
Block a user