forked from OSchip/llvm-project
[ELF] - Attemp to fix bot
http://lab.llvm.org:8011/builders/lld-x86_64-darwin13/builds/8549/steps/build_Lld/logs/stdio llvm-svn: 304016
This commit is contained in:
parent
6a2431df0b
commit
1ef2e237bf
|
@ -1778,7 +1778,7 @@ void GdbIndexSection::readDwarf(InputSection *Sec) {
|
|||
std::tie(IsNew, Sym) = SymbolTable.add(Hash, Offset);
|
||||
if (IsNew) {
|
||||
Sym->CuVectorIndex = CuVectors.size();
|
||||
CuVectors.push_back({});
|
||||
CuVectors.resize(CuVectors.size() + 1);
|
||||
}
|
||||
|
||||
CuVectors[Sym->CuVectorIndex].insert((Pair.second << 24) | (uint32_t)CuId);
|
||||
|
|
Loading…
Reference in New Issue