Revert D104488 and friends since it broke the windows bot
Reverts commits: "Fix failing tests after https://reviews.llvm.org/D104488." "Fix buildbot failure after https://reviews.llvm.org/D104488." "Create synthetic symbol names on demand to improve memory consumption and startup times." This series of commits broke the windows lldb bot and then failed to fix all of the failing tests.
This commit is contained in:
@@ -4696,10 +4696,8 @@ size_t ObjectFileMachO::ParseSymtab() {
|
||||
symbol_byte_size = section_end_file_addr - symbol_file_addr;
|
||||
}
|
||||
sym[sym_idx].SetID(synthetic_sym_id++);
|
||||
// Don't set the name for any synthetic symbols, the Symbol
|
||||
// object will generate one if needed when the name is accessed
|
||||
// via accessors.
|
||||
sym[sym_idx].GetMangled().SetDemangledName(ConstString());
|
||||
sym[sym_idx].GetMangled().SetDemangledName(
|
||||
GetNextSyntheticSymbolName());
|
||||
sym[sym_idx].SetType(eSymbolTypeCode);
|
||||
sym[sym_idx].SetIsSynthetic(true);
|
||||
sym[sym_idx].GetAddressRef() = symbol_addr;
|
||||
|
||||
Reference in New Issue
Block a user