Add isIntegral() method to SignedIntType and UnsignedIntType.

llvm-svn: 224
This commit is contained in:
Vikram S. Adve 2001-07-21 12:32:48 +00:00
parent fcb6aefa90
commit aa4c7b56f8
1 changed files with 6 additions and 0 deletions

View File

@ -70,6 +70,9 @@ public:
// isSigned - Return whether a numeric type is signed.
virtual bool isSigned() const { return 1; }
// isIntegral - Return whether this is one of the integer types
virtual bool isIntegral() const { return 1; }
};
class UnsignedIntType : public Type {
@ -81,6 +84,9 @@ public:
// isUnsigned - Return whether a numeric type is signed.
virtual bool isUnsigned() const { return 1; }
// isIntegral - Return whether this is one of the integer types
virtual bool isIntegral() const { return 1; }
};
static struct TypeType : public Type {