mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
isThumb2 really should mean thumb2 only, not thumb2+.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74871 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
36a0aebac2
commit
3147fb2cff
@ -108,7 +108,7 @@ protected:
|
||||
|
||||
bool isThumb() const { return IsThumb; }
|
||||
bool isThumb1Only() const { return IsThumb && (ThumbMode == Thumb1); }
|
||||
bool isThumb2() const { return IsThumb && (ThumbMode >= Thumb2); }
|
||||
bool isThumb2() const { return IsThumb && (ThumbMode == Thumb2); }
|
||||
bool hasThumb2() const { return ThumbMode >= Thumb2; }
|
||||
|
||||
bool isR9Reserved() const { return IsR9Reserved; }
|
||||
|
Loading…
Reference in New Issue
Block a user