diff options
author | Bradley Smith <bradley.smith@arm.com> | 2016-01-15 10:23:46 +0000 |
---|---|---|
committer | Bradley Smith <bradley.smith@arm.com> | 2016-01-15 10:23:46 +0000 |
commit | 4c21cba72bc51e8f5b16efd6c2d9ca7ff88886f4 (patch) | |
tree | 4f1041ceaa5ea73a0d5b9a9dc6eeb4c8af4ab893 /llvm/lib/Target/ARM/ARMSubtarget.cpp | |
parent | cff8550121f37ac8b97eafb69960c71d4fed03d1 (diff) | |
download | bcm5719-llvm-4c21cba72bc51e8f5b16efd6c2d9ca7ff88886f4.tar.gz bcm5719-llvm-4c21cba72bc51e8f5b16efd6c2d9ca7ff88886f4.zip |
[ARM] Split out ARMv8-A semaphores and atomics and ARMv7 clrex as separate features
llvm-svn: 257877
Diffstat (limited to 'llvm/lib/Target/ARM/ARMSubtarget.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMSubtarget.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/ARMSubtarget.cpp b/llvm/lib/Target/ARM/ARMSubtarget.cpp index bb6ae28065b..c676f9f5f48 100644 --- a/llvm/lib/Target/ARM/ARMSubtarget.cpp +++ b/llvm/lib/Target/ARM/ARMSubtarget.cpp @@ -154,6 +154,8 @@ void ARMSubtarget::initializeEnvironment() { UseNaClTrap = false; GenLongCalls = false; UnsafeFPMath = false; + HasV7Clrex = false; + HasAcquireRelease = false; // MCAsmInfo isn't always present (e.g. in opt) so we can't initialize this // directly from it, but we can try to make sure they're consistent when both |