From a82d4078502b7cfcaa553dbf845c948a99f05ab5 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 12 Jan 2007 22:11:53 +0000 Subject: [PATCH 1/1] inline isIntegral to make this method look like classof for all other derived types git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33144 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/DerivedTypes.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/llvm/DerivedTypes.h b/include/llvm/DerivedTypes.h index 78759f1dea9..ccef4cbeabd 100644 --- a/include/llvm/DerivedTypes.h +++ b/include/llvm/DerivedTypes.h @@ -103,7 +103,9 @@ public: // Methods for support type inquiry through isa, cast, and dyn_cast: static inline bool classof(const IntegerType *T) { return true; } - static inline bool classof(const Type *T) { return T->isIntegral(); } + static inline bool classof(const Type *T) { + return T->getTypeID() == IntegerTyID; + } }; -- 2.34.1