mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-16 01:16:36 +00:00
Add isIntegral() method to SignedIntType and UnsignedIntType.
llvm-svn: 224
This commit is contained in:
parent
fcb6aefa90
commit
aa4c7b56f8
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user