Add a doxygen comment to DebugLocEntry::Merge.
authorAdrian Prantl <aprantl@apple.com>
Tue, 1 Apr 2014 23:34:45 +0000 (23:34 +0000)
committerAdrian Prantl <aprantl@apple.com>
Tue, 1 Apr 2014 23:34:45 +0000 (23:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205374 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/DebugLocEntry.h

index 0834b36013d903eed35085e04f282f2a30e7dcc9..7551c8f0ced35cfa9ec0ef5fab8e7b8ab4ecfdb8 100644 (file)
@@ -94,6 +94,9 @@ public:
     EntryKind = E_ConstantInt;
   }
 
+  /// \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.
   bool Merge(const DebugLocEntry &Next) {
     if (End == Next.Begin && hasSameValueOrLocation(Next)) {
       End = Next.End;