[llvm-commits] [llvm] r97979 - /llvm/trunk/include/llvm/Analysis/DebugInfo.h
Devang Patel
dpatel at apple.com
Mon Mar 8 13:00:27 PST 2010
Author: dpatel
Date: Mon Mar 8 15:00:27 2010
New Revision: 97979
URL: http://llvm.org/viewvc/llvm-project?rev=97979&view=rev
Log:
isNull() is not used any more.
Modified:
llvm/trunk/include/llvm/Analysis/DebugInfo.h
Modified: llvm/trunk/include/llvm/Analysis/DebugInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/DebugInfo.h?rev=97979&r1=97978&r2=97979&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/DebugInfo.h (original)
+++ llvm/trunk/include/llvm/Analysis/DebugInfo.h Mon Mar 8 15:00:27 2010
@@ -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; }
More information about the llvm-commits
mailing list