From: Vikram S. Adve Date: Sat, 21 Jul 2001 12:32:48 +0000 (+0000) Subject: Add isIntegral() method to SignedIntType and UnsignedIntType. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a4e6f88fbba40e5818906b6a75e5cc15870bf4b8;p=oota-llvm.git Add isIntegral() method to SignedIntType and UnsignedIntType. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index ef6a892135d..2e0bee55e55 100644 --- a/lib/VMCore/Type.cpp +++ b/lib/VMCore/Type.cpp @@ -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 {