diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-06-25 16:03:07 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-06-25 16:03:07 +0000 |
commit | 8f74c88cb6743a08d5f74429aea36691708b03e8 (patch) | |
tree | 20ca82474c3136f48246978ae897ca6717b3bfe1 | |
parent | 7d209570b69bc5fe99c80b92e18579489c6bc377 (diff) | |
download | bcm5719-llvm-8f74c88cb6743a08d5f74429aea36691708b03e8.tar.gz bcm5719-llvm-8f74c88cb6743a08d5f74429aea36691708b03e8.zip |
Revert 74164. We'll want to use this method later.
llvm-svn: 74176
-rw-r--r-- | llvm/lib/Target/ARM/ARMSubtarget.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/ARMSubtarget.h b/llvm/lib/Target/ARM/ARMSubtarget.h index c49768ac953..c3cc7fff6e3 100644 --- a/llvm/lib/Target/ARM/ARMSubtarget.h +++ b/llvm/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; } |