mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-02 22:23:10 +00:00
Rename the MIPS routine abiUsesSoftFloat -> useSoftFloat to match
some incoming changes and the general scheme used by features (use/has). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236794 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -3017,7 +3017,7 @@ MipsTargetLowering::LowerFormalArguments(SDValue Chain,
|
||||
// when allocating floating point values to integer registers.
|
||||
// This shouldn't influence how we load the value into registers unless
|
||||
// we are targetting softfloat.
|
||||
if (VA.getValVT().isFloatingPoint() && !Subtarget.abiUsesSoftFloat())
|
||||
if (VA.getValVT().isFloatingPoint() && !Subtarget.useSoftFloat())
|
||||
LocVT = VA.getValVT();
|
||||
}
|
||||
|
||||
@@ -3087,7 +3087,7 @@ MipsTargetLowering::CanLowerReturn(CallingConv::ID CallConv,
|
||||
|
||||
bool
|
||||
MipsTargetLowering::shouldSignExtendTypeInLibCall(EVT Type, bool IsSigned) const {
|
||||
if (Subtarget.hasMips3() && Subtarget.abiUsesSoftFloat()) {
|
||||
if (Subtarget.hasMips3() && Subtarget.useSoftFloat()) {
|
||||
if (Type == MVT::i32)
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user