diff options
author | Zachary Turner <zturner@google.com> | 2018-03-20 18:37:03 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2018-03-20 18:37:03 +0000 |
commit | fced530650414f4f0901567e12b4c6318d70d811 (patch) | |
tree | 0d0b80a649be55951f55dbeb5bee9bba67fb93a7 /llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp | |
parent | 9362753a699dee4b7041204ab169fd1e84fef039 (diff) | |
download | llvm-fced530650414f4f0901567e12b4c6318d70d811.zip llvm-fced530650414f4f0901567e12b4c6318d70d811.tar.gz llvm-fced530650414f4f0901567e12b4c6318d70d811.tar.bz2 |
Revert "Resubmit "Support embedding natvis files in PDBs.""
This is still failing on a different bot this time due to some
issue related to hashing absolute paths. Reverting until I can
figure it out.
llvm-svn: 328014
Diffstat (limited to 'llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp b/llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp index 9a3d3e3..88c0076 100644 --- a/llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp +++ b/llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp @@ -80,13 +80,13 @@ Error DebugCrossModuleImportsSubsection::commit( Ids.push_back(&M); std::sort(Ids.begin(), Ids.end(), [this](const T &L1, const T &L2) { - return Strings.getIdForString(L1->getKey()) < - Strings.getIdForString(L2->getKey()); + return Strings.getStringId(L1->getKey()) < + Strings.getStringId(L2->getKey()); }); for (const auto &Item : Ids) { CrossModuleImport Imp; - Imp.ModuleNameOffset = Strings.getIdForString(Item->getKey()); + Imp.ModuleNameOffset = Strings.getStringId(Item->getKey()); Imp.Count = Item->getValue().size(); if (auto EC = Writer.writeObject(Imp)) return EC; |