diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-06-25 05:20:31 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-06-25 05:20:31 +0000 |
commit | c9028e69f11246a051c3de1457cd89d46e82ca60 (patch) | |
tree | 0fd65910f984e0a54216ac7177f32d702befa851 | |
parent | 4b73893d82866fc6889e550bedda0e4d76ad930a (diff) |
Remove unused hasV6T2Ops method. We already have a separate feature to
identify Thumb2.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74164 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMSubtarget.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMSubtarget.h b/lib/Target/ARM/ARMSubtarget.h index c3cc7fff6e..c49768ac95 100644 --- a/lib/Target/ARM/ARMSubtarget.h +++ b/lib/Target/ARM/ARMSubtarget.h @@ -93,7 +93,6 @@ 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; } |