summaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter/DebugLocEntry.h
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2014-04-01 22:06:18 +0000
committerDavid Blaikie <dblaikie@gmail.com>2014-04-01 22:06:18 +0000
commit2e33edd399580121fc62d918a0a20ac05171f0c4 (patch)
tree17f029723e2c53e6f213db1a6e8026d2d38ae568 /lib/CodeGen/AsmPrinter/DebugLocEntry.h
parente8ef6518ce3edcc39f01ae1583294ae4b6c62dd7 (diff)
downloadllvm-2e33edd399580121fc62d918a0a20ac05171f0c4.tar.gz
llvm-2e33edd399580121fc62d918a0a20ac05171f0c4.tar.bz2
llvm-2e33edd399580121fc62d918a0a20ac05171f0c4.tar.xz
Remove unused function DebugLocEntry::isEmpty
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205365 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DebugLocEntry.h')
-rw-r--r--lib/CodeGen/AsmPrinter/DebugLocEntry.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/CodeGen/AsmPrinter/DebugLocEntry.h b/lib/CodeGen/AsmPrinter/DebugLocEntry.h
index 5bc9ebc893..9f5be6164f 100644
--- a/lib/CodeGen/AsmPrinter/DebugLocEntry.h
+++ b/lib/CodeGen/AsmPrinter/DebugLocEntry.h
@@ -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);
}