diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-31 01:45:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-31 01:45:02 +0000 |
commit | 01c7f6d1c75f83f0b9229154450b0de95a96ec8b (patch) | |
tree | 1a14ecd2c72471fcb105ea3c1954471e2c3b2633 | |
parent | aff78984db67e8abc106c3bc6d59444fff1ba697 (diff) | |
download | external_llvm-01c7f6d1c75f83f0b9229154450b0de95a96ec8b.tar.gz external_llvm-01c7f6d1c75f83f0b9229154450b0de95a96ec8b.tar.bz2 external_llvm-01c7f6d1c75f83f0b9229154450b0de95a96ec8b.zip |
Remove obsolete, confusing, method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3175 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Instruction.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/Instruction.h b/include/llvm/Instruction.h index e13d1b747b..2e5bcdaed2 100644 --- a/include/llvm/Instruction.h +++ b/include/llvm/Instruction.h @@ -68,7 +68,6 @@ public: inline bool isTerminator() const { // Instance of TerminatorInst? return iType >= FirstTermOp && iType < NumTermOps; } - inline bool isDefinition() const { return !isTerminator(); } inline bool isUnaryOp() const { return iType >= FirstUnaryOp && iType < NumUnaryOps; } |