From: Chris Lattner Date: Fri, 12 Jan 2007 22:11:53 +0000 (+0000) Subject: inline isIntegral to make this method look like classof for all other X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a82d4078502b7cfcaa553dbf845c948a99f05ab5;hp=bcaae8d8a4840343af0243104ac62b4a4c320316;p=oota-llvm.git 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 --- 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; + } };