diff options
author | Yaron Keren <yaron.keren@gmail.com> | 2015-08-08 21:03:19 +0000 |
---|---|---|
committer | Yaron Keren <yaron.keren@gmail.com> | 2015-08-08 21:03:19 +0000 |
commit | 3f85a22cf93bd86017b273fbddb982ed6584d84f (patch) | |
tree | 4390a0eee43b05e99a421a42dd07fc97e3569766 /clang/lib/Lex/ModuleMap.cpp | |
parent | fd613545cb235993108f07c8d79bd9f37ee1e80e (diff) | |
download | llvm-3f85a22cf93bd86017b273fbddb982ed6584d84f.zip llvm-3f85a22cf93bd86017b273fbddb982ed6584d84f.tar.gz llvm-3f85a22cf93bd86017b273fbddb982ed6584d84f.tar.bz2 |
Fix dangling reference in DwarfLinker.cpp. The original code
Seq.emplace_back(Seq.back());
does not work as planned, since Seq.back() may become a dangling reference
when emplace_back is called and possibly reallocates vector. To avoid this,
the vector allocation should be reserved first and only then used.
This broke test/tools/dsymutil/X86/custom-line-table.test with Visual C++ 2013.
llvm-svn: 244405
Diffstat (limited to 'clang/lib/Lex/ModuleMap.cpp')
0 files changed, 0 insertions, 0 deletions