commit | 9dcd6f14f8c559601fa2ad1ff168dcc236f7ce05 | [log] [tgz] |
---|---|---|
author | Devang Patel <dpatel@apple.com> | Mon Mar 08 21:00:27 2010 +0000 |
committer | Devang Patel <dpatel@apple.com> | Mon Mar 08 21:00:27 2010 +0000 |
tree | 6bd8f8d3a9c9e2f46d104e2058a63054e367e2a4 | |
parent | 3c91b05d2b1751b9e4e21fd958d358ec463dcd3c [diff] |
isNull() is not used any more. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97979 91177308-0d34-0410-b5e6-96231b3b80d8
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 @@ 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; }