[llvm] r205365 - Remove unused function DebugLocEntry::isEmpty

David Blaikie dblaikie at gmail.com
Tue Apr 1 15:06:19 PDT 2014


Author: dblaikie
Date: Tue Apr  1 17:06:18 2014
New Revision: 205365

URL: http://llvm.org/viewvc/llvm-project?rev=205365&view=rev
Log:
Remove unused function DebugLocEntry::isEmpty

Modified:
    llvm/trunk/lib/CodeGen/AsmPrinter/DebugLocEntry.h

Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DebugLocEntry.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DebugLocEntry.h?rev=205365&r1=205364&r2=205365&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DebugLocEntry.h (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DebugLocEntry.h Tue Apr  1 17:06:18 2014
@@ -89,9 +89,6 @@ public:
     EntryKind = E_ConstantInt;
   }
 
-  /// \brief Empty entries are also used as a trigger to emit temp label. Such
-  /// labels are referenced is used to find debug_loc offset for a given DIE.
-  bool isEmpty() const { return Begin == 0 && End == 0; }
   bool Merge(const DebugLocEntry &Next) {
     return End == Next.Begin && hasSameValueOrLocation(Next);
   }





More information about the llvm-commits mailing list