From: Devang Patel Date: Mon, 8 Mar 2010 21:00:27 +0000 (+0000) Subject: isNull() is not used any more. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=9dcd6f14f8c559601fa2ad1ff168dcc236f7ce05;p=oota-llvm.git 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 f1826e5649e..14c3e1bb1cf 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; }