diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-04-20 00:14:25 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-04-20 00:14:25 +0000 |
commit | 558692fd0a31d4d3ae4fd09a3a02f80da2e44e5c (patch) | |
tree | b091c8cac7cf9dda382e4539f65b5c1a6818fc03 /lib/Target/PowerPC/PPCSubtarget.h | |
parent | 4aaf3465f71afa4e156eb15df12095ebde1b0f6f (diff) |
ADT/Triple: Renambe isOSX... methods to isMacOSX for consistency with the OS
triple component.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129838 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCSubtarget.h')
-rw-r--r-- | lib/Target/PowerPC/PPCSubtarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCSubtarget.h b/lib/Target/PowerPC/PPCSubtarget.h index d1fac98892..8fd1a44769 100644 --- a/lib/Target/PowerPC/PPCSubtarget.h +++ b/lib/Target/PowerPC/PPCSubtarget.h @@ -138,7 +138,7 @@ public: const Triple &getTargetTriple() const { return TargetTriple; } /// isDarwin - True if this is any darwin platform. - bool isDarwin() const { return TargetTriple.isOSX(); } + bool isDarwin() const { return TargetTriple.isMacOSX(); } bool isDarwinABI() const { return isDarwin(); } bool isSVR4ABI() const { return !isDarwin(); } |