projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b3a74c6
)
Modify r244405 to clearer code, per David Blaikie suggestion.
author
Yaron Keren
<yaron.keren@gmail.com>
Mon, 10 Aug 2015 16:15:51 +0000
(16:15 +0000)
committer
Yaron Keren
<yaron.keren@gmail.com>
Mon, 10 Aug 2015 16:15:51 +0000
(16:15 +0000)
llvm-svn: 244455
llvm/tools/dsymutil/DwarfLinker.cpp
patch
|
blob
|
history
diff --git
a/llvm/tools/dsymutil/DwarfLinker.cpp
b/llvm/tools/dsymutil/DwarfLinker.cpp
index
d839f07
..
ae2f6d3
100644
(file)
--- a/
llvm/tools/dsymutil/DwarfLinker.cpp
+++ b/
llvm/tools/dsymutil/DwarfLinker.cpp
@@
-2884,8
+2884,8
@@
void DwarfLinker::patchLineTableForUnit(CompileUnit &Unit,
if (StopAddress != -1ULL && !Seq.empty()) {
// Insert end sequence row with the computed end address, but
// the same line as the previous one.
-
Seq.reserve(Seq.size() + 1
);
- Seq.emplace_back(
Seq.back()
);
+
auto NextLine = Seq.back(
);
+ Seq.emplace_back(
NextLine
);
Seq.back().Address = StopAddress;
Seq.back().EndSequence = 1;
Seq.back().PrologueEnd = 0;