mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Separate V6 from V6T2 since the latter has some extra nice instructions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73085 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -23,7 +23,7 @@ class Module;
|
||||
class ARMSubtarget : public TargetSubtarget {
|
||||
protected:
|
||||
enum ARMArchEnum {
|
||||
V4T, V5T, V5TE, V6, V7A
|
||||
V4T, V5T, V5TE, V6, V6T2, V7A
|
||||
};
|
||||
|
||||
enum ARMFPEnum {
|
||||
@@ -92,6 +92,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; }
|
||||
|
Reference in New Issue
Block a user