aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/TargetLoweringBase.cpp
diff options
context:
space:
mode:
authorMatthias Braun <matze@braunis.de>2017-12-18 23:33:28 +0000
committerMatthias Braun <matze@braunis.de>2017-12-18 23:33:28 +0000
commit0282091c9fe7b79adf51964817a19de265c609d7 (patch)
tree49c4798383d07599283dbfed8d1e22c44a78dad4 /llvm/lib/CodeGen/TargetLoweringBase.cpp
parent9dbd6cc82381d0c8c0346ae6f231f69e14744acb (diff)
downloadllvm-0282091c9fe7b79adf51964817a19de265c609d7.zip
llvm-0282091c9fe7b79adf51964817a19de265c609d7.tar.gz
llvm-0282091c9fe7b79adf51964817a19de265c609d7.tar.bz2
TargetLoweringBase: Remove unnecessary watchos exception; NFC
WatchOS isn't report as iOS (as opposed to tvos) so the exception I added in my last commit wasn't necessary after all. llvm-svn: 321041
Diffstat (limited to 'llvm/lib/CodeGen/TargetLoweringBase.cpp')
-rw-r--r--llvm/lib/CodeGen/TargetLoweringBase.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/TargetLoweringBase.cpp b/llvm/lib/CodeGen/TargetLoweringBase.cpp
index 5087e4a..133d0c5 100644
--- a/llvm/lib/CodeGen/TargetLoweringBase.cpp
+++ b/llvm/lib/CodeGen/TargetLoweringBase.cpp
@@ -91,12 +91,13 @@ static cl::opt<unsigned> OptsizeJumpTableDensity(
static bool darwinHasSinCos(const Triple &TT) {
assert(TT.isOSDarwin() && "should be called with darwin triple");
- // macos < 10.9 has no sincos_stret and we don't bother for 32bit code.
+ // Macos < 10.9 has no sincos_stret and we don't bother for 32bit code.
if (TT.isMacOSX())
return !TT.isMacOSXVersionLT(10, 9) && TT.isArch64Bit();
- // ios < 7.0 has no sincos_stret (watchos reports version 2.0 but is fine).
+ // iOS < 7.0 has no sincos_stret.
if (TT.isiOS())
- return !TT.isOSVersionLT(7, 0) || TT.isWatchOS();
+ return !TT.isOSVersionLT(7, 0);
+ // Any other darwin such as WatchOS/TvOS is new enough.
return true;
}