mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-16 08:08:01 +00:00
Use triple's isiOS() and isOSDarwin() methods.
These methods are already used in lots of places. This makes things more consistent. NFC. llvm-svn: 219386
This commit is contained in:
parent
35e867c06a
commit
c80c9c8124
@ -898,7 +898,7 @@ ARMTargetLowering::ARMTargetLowering(const TargetMachine &TM)
|
||||
if (Subtarget->hasSinCos()) {
|
||||
setLibcallName(RTLIB::SINCOS_F32, "sincosf");
|
||||
setLibcallName(RTLIB::SINCOS_F64, "sincos");
|
||||
if (Subtarget->getTargetTriple().getOS() == Triple::IOS) {
|
||||
if (Subtarget->getTargetTriple().isiOS()) {
|
||||
// For iOS, we don't want to the normal expansion of a libcall to
|
||||
// sincos. We want to issue a libcall to __sincos_stret.
|
||||
setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
|
||||
|
@ -395,8 +395,7 @@ unsigned ARMSubtarget::getMispredictionPenalty() const {
|
||||
}
|
||||
|
||||
bool ARMSubtarget::hasSinCos() const {
|
||||
return getTargetTriple().getOS() == Triple::IOS &&
|
||||
!getTargetTriple().isOSVersionLT(7, 0);
|
||||
return getTargetTriple().isiOS() && !getTargetTriple().isOSVersionLT(7, 0);
|
||||
}
|
||||
|
||||
// This overrides the PostRAScheduler bit in the SchedModel for any CPU.
|
||||
|
@ -352,7 +352,7 @@ const char* TargetLibraryInfo::StandardNames[LibFunc::NumLibFuncs] =
|
||||
|
||||
static bool hasSinCosPiStret(const Triple &T) {
|
||||
// Only Darwin variants have _stret versions of combined trig functions.
|
||||
if (!T.isMacOSX() && T.getOS() != Triple::IOS)
|
||||
if (!T.isOSDarwin())
|
||||
return false;
|
||||
|
||||
// The ABI is rather complicated on x86, so don't do anything special there.
|
||||
@ -362,7 +362,7 @@ static bool hasSinCosPiStret(const Triple &T) {
|
||||
if (T.isMacOSX() && T.isMacOSXVersionLT(10, 9))
|
||||
return false;
|
||||
|
||||
if (T.getOS() == Triple::IOS && T.isOSVersionLT(7, 0))
|
||||
if (T.isiOS() && T.isOSVersionLT(7, 0))
|
||||
return false;
|
||||
|
||||
return true;
|
||||
|
@ -300,7 +300,7 @@ struct ShadowMapping {
|
||||
static ShadowMapping getShadowMapping(const Module &M, int LongSize) {
|
||||
llvm::Triple TargetTriple(M.getTargetTriple());
|
||||
bool IsAndroid = TargetTriple.getEnvironment() == llvm::Triple::Android;
|
||||
bool IsIOS = TargetTriple.getOS() == llvm::Triple::IOS;
|
||||
bool IsIOS = TargetTriple.isiOS();
|
||||
bool IsFreeBSD = TargetTriple.getOS() == llvm::Triple::FreeBSD;
|
||||
bool IsLinux = TargetTriple.getOS() == llvm::Triple::Linux;
|
||||
bool IsPPC64 = TargetTriple.getArch() == llvm::Triple::ppc64 ||
|
||||
|
Loading…
Reference in New Issue
Block a user