diff options
author | Tim Northover <tnorthover@apple.com> | 2013-12-10 16:57:43 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2013-12-10 16:57:43 +0000 |
commit | 9653eb575990bf5c1977d7cd72380bd47506e4ff (patch) | |
tree | 375e2a347f82b684ed9c4d4249484ce5dac5a140 /llvm/lib/Target/ARM/ARMSubtarget.h | |
parent | a7830a47f13ff616e406f5f1174f5d6ff34b09c0 (diff) | |
download | bcm5719-llvm-9653eb575990bf5c1977d7cd72380bd47506e4ff.tar.gz bcm5719-llvm-9653eb575990bf5c1977d7cd72380bd47506e4ff.zip |
Make Triple's isOSBinFormatXXX functions partition triple-space.
Most users would be surprised if "isCOFF" and "isMachO" were simultaneously
true, unless they'd put the compiler in a box with a gun attached to a photon
detector.
This makes sure precisely one of the three formats is true for any triple and
simplifies some target logic based on that.
llvm-svn: 196934
Diffstat (limited to 'llvm/lib/Target/ARM/ARMSubtarget.h')
-rw-r--r-- | llvm/lib/Target/ARM/ARMSubtarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMSubtarget.h b/llvm/lib/Target/ARM/ARMSubtarget.h index ca1e5d222d1..45a7a1aaaec 100644 --- a/llvm/lib/Target/ARM/ARMSubtarget.h +++ b/llvm/lib/Target/ARM/ARMSubtarget.h @@ -310,7 +310,7 @@ public: bool isTargetDarwin() const { return TargetTriple.isOSDarwin(); } bool isTargetNaCl() const { return TargetTriple.isOSNaCl(); } bool isTargetLinux() const { return TargetTriple.isOSLinux(); } - bool isTargetELF() const { return !isTargetDarwin(); } + bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); } // 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. // FIXME: Add a flag for bare-metal for that target and set Triple::EABI |