summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f1d7924)
raw | patch | inline | side by side (parent: f1d7924)
author | Adrian Prantl <aprantl@apple.com> | |
Wed, 2 Apr 2014 15:49:45 +0000 (15:49 +0000) | ||
committer | Adrian Prantl <aprantl@apple.com> | |
Wed, 2 Apr 2014 15:49:45 +0000 (15:49 +0000) |
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205429 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/AsmPrinter/DebugLocEntry.h | patch | blob | history |
index 7551c8f0ced35cfa9ec0ef5fab8e7b8ab4ecfdb8..470453fbe26fd9d9896edbe44fa4909c8e22dbbf 100644 (file)
/// \brief Attempt to merge this DebugLocEntry with Next and return
/// true if the merge was successful. Entries can be merged if they
- /// share the same Loc/Constant and their ranges are adjacent.
+ /// share the same Loc/Constant and if Next immediately follows this
+ /// Entry.
bool Merge(const DebugLocEntry &Next) {
if (End == Next.Begin && hasSameValueOrLocation(Next)) {
End = Next.End;