diff options
author | Devang Patel <dpatel@apple.com> | 2010-03-08 21:00:27 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-03-08 21:00:27 +0000 |
commit | 9dcd6f14f8c559601fa2ad1ff168dcc236f7ce05 (patch) | |
tree | 6bd8f8d3a9c9e2f46d104e2058a63054e367e2a4 | |
parent | 3c91b05d2b1751b9e4e21fd958d358ec463dcd3c (diff) | |
download | external_llvm-9dcd6f14f8c559601fa2ad1ff168dcc236f7ce05.zip external_llvm-9dcd6f14f8c559601fa2ad1ff168dcc236f7ce05.tar.gz external_llvm-9dcd6f14f8c559601fa2ad1ff168dcc236f7ce05.tar.bz2 |
isNull() is not used any more.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97979 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Analysis/DebugInfo.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/Analysis/DebugInfo.h b/include/llvm/Analysis/DebugInfo.h index f1826e5..14c3e1b 100644 --- a/include/llvm/Analysis/DebugInfo.h +++ b/include/llvm/Analysis/DebugInfo.h @@ -67,7 +67,6 @@ namespace llvm { explicit DIDescriptor() : DbgNode(0) {} explicit DIDescriptor(MDNode *N) : DbgNode(N) {} - bool isNull() const { return DbgNode == 0; } bool Verify() const { return DbgNode != 0; } MDNode *getNode() const { return DbgNode; } |