From ed9337a488364f9ab90c039b41737b38cde2c493 Mon Sep 17 00:00:00 2001 From: Daniel Berlin Date: Tue, 7 Feb 2017 16:58:22 +0000 Subject: [PATCH] MemorySSA: Remove unnecessary classof functions git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@294316 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Transforms/Utils/MemorySSA.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/llvm/Transforms/Utils/MemorySSA.h b/include/llvm/Transforms/Utils/MemorySSA.h index bad2a3b708c..c6c7c154fe8 100644 --- a/include/llvm/Transforms/Utils/MemorySSA.h +++ b/include/llvm/Transforms/Utils/MemorySSA.h @@ -138,7 +138,6 @@ public: // Methods for support type inquiry through isa, cast, and // dyn_cast - static inline bool classof(const MemoryAccess *) { return true; } static inline bool classof(const Value *V) { unsigned ID = V->getValueID(); return ID == MemoryUseVal || ID == MemoryPhiVal || ID == MemoryDefVal; @@ -243,7 +242,6 @@ public: /// \brief Get the access that produces the memory state used by this Use. MemoryAccess *getDefiningAccess() const { return getOperand(0); } - static inline bool classof(const MemoryUseOrDef *) { return true; } static inline bool classof(const Value *MA) { return MA->getValueID() == MemoryUseVal || MA->getValueID() == MemoryDefVal; } @@ -284,7 +282,6 @@ public: void *operator new(size_t s) { return User::operator new(s, 1); } void *operator new(size_t, unsigned) = delete; - static inline bool classof(const MemoryUse *) { return true; } static inline bool classof(const Value *MA) { return MA->getValueID() == MemoryUseVal; } @@ -342,7 +339,6 @@ public: void *operator new(size_t s) { return User::operator new(s, 1); } void *operator new(size_t, unsigned) = delete; - static inline bool classof(const MemoryDef *) { return true; } static inline bool classof(const Value *MA) { return MA->getValueID() == MemoryDefVal; } @@ -501,7 +497,6 @@ public: return getIncomingValue(Idx); } - static inline bool classof(const MemoryPhi *) { return true; } static inline bool classof(const Value *V) { return V->getValueID() == MemoryPhiVal; }