From 350abb9799d9a73d5752d2eb89771d1483ecdf70 Mon Sep 17 00:00:00 2001 From: Bob Wilson Date: Thu, 25 Jun 2009 05:20:31 +0000 Subject: [PATCH] Remove unused hasV6T2Ops method. We already have a separate feature to identify Thumb2. llvm-svn: 74164 --- llvm/lib/Target/ARM/ARMSubtarget.h | 1 - 1 file changed, 1 deletion(-) diff --git a/llvm/lib/Target/ARM/ARMSubtarget.h b/llvm/lib/Target/ARM/ARMSubtarget.h index c3cc7fff6e3f..c49768ac953b 100644 --- a/llvm/lib/Target/ARM/ARMSubtarget.h +++ b/llvm/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; }