Second part of r244470 (source file was unsaved in editor).
authorYaron Keren <yaron.keren@gmail.com>
Mon, 10 Aug 2015 18:06:01 +0000 (18:06 +0000)
committerYaron Keren <yaron.keren@gmail.com>
Mon, 10 Aug 2015 18:06:01 +0000 (18:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244471 91177308-0d34-0410-b5e6-96231b3b80d8

tools/dsymutil/DwarfLinker.cpp

index 997808d12a3a2a3b4b89ba3121620278511139a9..4231b14fbedafc2a68c6329b4b3ec0dea082d54a 100644 (file)
@@ -2885,11 +2885,11 @@ void DwarfLinker::patchLineTableForUnit(CompileUnit &Unit,
         // Insert end sequence row with the computed end address, but
         // the same line as the previous one.
         auto NextLine = Seq.back();
-        Seq.back().Address = StopAddress;
-        Seq.back().EndSequence = 1;
-        Seq.back().PrologueEnd = 0;
-        Seq.back().BasicBlock = 0;
-        Seq.back().EpilogueBegin = 0;
+        NextLine.Address = StopAddress;
+        NextLine.EndSequence = 1;
+        NextLine.PrologueEnd = 0;
+        NextLine.BasicBlock = 0;
+        NextLine.EpilogueBegin = 0;
         Seq.push_back(NextLine);
         insertLineSequence(Seq, NewRows);
       }