aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM/ARMSubtarget.h
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2009-06-25 16:03:07 +0000
committerBob Wilson <bob.wilson@apple.com>2009-06-25 16:03:07 +0000
commiteab41ba93e711a0a20a069a83f050cab66b1e6e8 (patch)
treece9cffc693718fddd9f71a2a86741ebe06f04a7e /lib/Target/ARM/ARMSubtarget.h
parent8e93de1fd77ffc86d156312878c289a9b779d156 (diff)
downloadexternal_llvm-eab41ba93e711a0a20a069a83f050cab66b1e6e8.zip
external_llvm-eab41ba93e711a0a20a069a83f050cab66b1e6e8.tar.gz
external_llvm-eab41ba93e711a0a20a069a83f050cab66b1e6e8.tar.bz2
Revert 74164. We'll want to use this method later.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74176 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMSubtarget.h')
-rw-r--r--lib/Target/ARM/ARMSubtarget.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMSubtarget.h b/lib/Target/ARM/ARMSubtarget.h
index c49768a..c3cc7ff 100644
--- a/lib/Target/ARM/ARMSubtarget.h
+++ b/lib/Target/ARM/ARMSubtarget.h
@@ -93,6 +93,7 @@ protected:
bool hasV5TOps() const { return ARMArchVersion >= V5T; }
bool hasV5TEOps() const { return ARMArchVersion >= V5TE; }
bool hasV6Ops() const { return ARMArchVersion >= V6; }
+ bool hasV6T2Ops() const { return ARMArchVersion >= V6T2; }
bool hasV7Ops() const { return ARMArchVersion >= V7A; }
bool hasVFP2() const { return ARMFPUType >= VFPv2; }