[llvm-commits] [llvm] r74176 - /llvm/trunk/lib/Target/ARM/ARMSubtarget.h
Bob Wilson
bob.wilson at apple.com
Thu Jun 25 09:03:10 PDT 2009
Author: bwilson
Date: Thu Jun 25 11:03:07 2009
New Revision: 74176
URL: http://llvm.org/viewvc/llvm-project?rev=74176&view=rev
Log:
Revert 74164. We'll want to use this method later.
Modified:
llvm/trunk/lib/Target/ARM/ARMSubtarget.h
Modified: llvm/trunk/lib/Target/ARM/ARMSubtarget.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMSubtarget.h?rev=74176&r1=74175&r2=74176&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMSubtarget.h (original)
+++ llvm/trunk/lib/Target/ARM/ARMSubtarget.h Thu Jun 25 11:03:07 2009
@@ -93,6 +93,7 @@
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; }
More information about the llvm-commits
mailing list