diff options
author | Chris Lattner <sabre@nondot.org> | 2002-03-18 05:00:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-03-18 05:00:51 +0000 |
commit | 4e390f61996ad67103c1c4a650ebed829d14ac13 (patch) | |
tree | dba6852bdad69cceed3a0845044f5141a91b8b69 | |
parent | fad0f52666a4073f66efe4e0e155ea2254feaa50 (diff) |
Add isa,cast,dyncast support for AllocationInst.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1915 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/iMemory.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/llvm/iMemory.h b/include/llvm/iMemory.h index ec04b281db..7d919196de 100644 --- a/include/llvm/iMemory.h +++ b/include/llvm/iMemory.h @@ -58,6 +58,16 @@ public: } virtual Instruction *clone() const = 0; + + // Methods for support type inquiry through isa, cast, and dyn_cast: + static inline bool classof(const AllocationInst *) { return true; } + static inline bool classof(const Instruction *I) { + return I->getOpcode() == Instruction::Alloca || + I->getOpcode() == Instruction::Malloc; + } + static inline bool classof(const Value *V) { + return isa<Instruction>(V) && classof(cast<Instruction>(V)); + } }; |