aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-31 01:45:02 +0000
committerChris Lattner <sabre@nondot.org>2002-07-31 01:45:02 +0000
commit01c7f6d1c75f83f0b9229154450b0de95a96ec8b (patch)
tree1a14ecd2c72471fcb105ea3c1954471e2c3b2633
parentaff78984db67e8abc106c3bc6d59444fff1ba697 (diff)
downloadexternal_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.h1
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;
}