mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-06 19:06:02 +03:00
Fix ARM default floating-point ABI.
It shouldn't really matter, as we probably aren't going to support anything but AAPCS anytime soon.
This commit is contained in:
parent
17ef7f7d09
commit
e37f0e0d35
1 changed files with 3 additions and 2 deletions
|
@ -185,8 +185,9 @@ static FloatABI::Type getARMFloatABI(const llvm::Triple &triple,
|
||||||
return FloatABI::Soft;
|
return FloatABI::Soft;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
// Assume "soft", but warn the user we are guessing.
|
// Assume "soft".
|
||||||
return FloatABI::SoftFP;
|
// TODO: Warn the user we are guessing.
|
||||||
|
return FloatABI::Soft;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue