add a helper method.

llvm-svn: 39885
This commit is contained in:
Chris Lattner 2007-07-15 23:32:03 +00:00
parent f2fd4e185e
commit 03bc1d9018

@ -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) {