summaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARMSubtarget.h
diff options
context:
space:
mode:
authorCameron Esfahani <dirty@apple.com>2013-08-29 20:23:14 +0000
committerCameron Esfahani <dirty@apple.com>2013-08-29 20:23:14 +0000
commit441c557708b5dbe91f1799baf790ad418c23ea70 (patch)
tree07017978679109c2e45a6669ff163cf87ee1c609 /lib/Target/ARM/ARMSubtarget.h
parent9071f68fd2b18abaee614e07ae6da6d8bc34426e (diff)
downloadllvm-441c557708b5dbe91f1799baf790ad418c23ea70.tar.gz
llvm-441c557708b5dbe91f1799baf790ad418c23ea70.tar.bz2
llvm-441c557708b5dbe91f1799baf790ad418c23ea70.tar.xz
Clean up some usage of Triple. The base class has methods for determining if the target is iOS and Linux.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189604 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMSubtarget.h')
-rw-r--r--lib/Target/ARM/ARMSubtarget.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/ARM/ARMSubtarget.h b/lib/Target/ARM/ARMSubtarget.h
index ad7f1b3e34..b13ff9ddeb 100644
--- a/lib/Target/ARM/ARMSubtarget.h
+++ b/lib/Target/ARM/ARMSubtarget.h
@@ -275,10 +275,10 @@ public:
const Triple &getTargetTriple() const { return TargetTriple; }
- bool isTargetIOS() const { return TargetTriple.getOS() == Triple::IOS; }
+ bool isTargetIOS() const { return TargetTriple.isiOS(); }
bool isTargetDarwin() const { return TargetTriple.isOSDarwin(); }
- bool isTargetNaCl() const { return TargetTriple.getOS() == Triple::NaCl; }
- bool isTargetLinux() const { return TargetTriple.getOS() == Triple::Linux; }
+ bool isTargetNaCl() const { return TargetTriple.isOSNaCl(); }
+ bool isTargetLinux() const { return TargetTriple.isOSLinux(); }
bool isTargetELF() const { return !isTargetDarwin(); }
// ARM EABI is the bare-metal EABI described in ARM ABI documents and
// can be accessed via -target arm-none-eabi. This is NOT GNUEABI.