forked from OSchip/llvm-project
Second part of r244470 (source file was unsaved in editor).
llvm-svn: 244471
This commit is contained in:
parent
f850d9846e
commit
b27259b224
|
@ -2885,11 +2885,11 @@ void DwarfLinker::patchLineTableForUnit(CompileUnit &Unit,
|
||||||
// Insert end sequence row with the computed end address, but
|
// Insert end sequence row with the computed end address, but
|
||||||
// the same line as the previous one.
|
// the same line as the previous one.
|
||||||
auto NextLine = Seq.back();
|
auto NextLine = Seq.back();
|
||||||
Seq.back().Address = StopAddress;
|
NextLine.Address = StopAddress;
|
||||||
Seq.back().EndSequence = 1;
|
NextLine.EndSequence = 1;
|
||||||
Seq.back().PrologueEnd = 0;
|
NextLine.PrologueEnd = 0;
|
||||||
Seq.back().BasicBlock = 0;
|
NextLine.BasicBlock = 0;
|
||||||
Seq.back().EpilogueBegin = 0;
|
NextLine.EpilogueBegin = 0;
|
||||||
Seq.push_back(NextLine);
|
Seq.push_back(NextLine);
|
||||||
insertLineSequence(Seq, NewRows);
|
insertLineSequence(Seq, NewRows);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue