mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
add a helper method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@39885 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
04d519e160
commit
f7b71c64cf
@ -50,6 +50,7 @@ public:
|
||||
bool isSigned() const { return !IsUnsigned; }
|
||||
bool isUnsigned() const { return IsUnsigned; }
|
||||
void setIsUnsigned(bool Val) { IsUnsigned = Val; }
|
||||
void setIsSigned(bool Val) { IsUnsigned = !Val; }
|
||||
|
||||
|
||||
const APSInt &operator%=(const APSInt &RHS) {
|
||||
|
Loading…
Reference in New Issue
Block a user