mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-25 20:59:51 +00:00
Add new constructor for const pool bool
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@245 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f59bd5331e
commit
1a2cefcb40
@ -70,8 +70,10 @@ 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
|
||||
|
||||
// isIntegral - Equivalent to isSigned() || isUnsigned, but with only a single
|
||||
// virtual function invocation.
|
||||
//
|
||||
virtual bool isIntegral() const { return 1; }
|
||||
};
|
||||
|
||||
@ -84,8 +86,10 @@ 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
|
||||
|
||||
// isIntegral - Equivalent to isSigned() || isUnsigned, but with only a single
|
||||
// virtual function invocation.
|
||||
//
|
||||
virtual bool isIntegral() const { return 1; }
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user