aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2018-03-19 20:41:59 +0000
committerZachary Turner <zturner@google.com>2018-03-19 20:41:59 +0000
commita21558897bd2d068e997cd6dc3d45af3f280cbb8 (patch)
treeb147fa697728704af4f3da547ba6255818a99ce6 /llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp
parentbd5ff79dd0b007489d4776ea0cb4c8cb4bed3fcd (diff)
downloadllvm-a21558897bd2d068e997cd6dc3d45af3f280cbb8.zip
llvm-a21558897bd2d068e997cd6dc3d45af3f280cbb8.tar.gz
llvm-a21558897bd2d068e997cd6dc3d45af3f280cbb8.tar.bz2
Revert "Support embedding natvis files in PDBs."
This is causing a test failure on a certain bot, so I'm removing this temporarily until we can figure out the source of the error. llvm-svn: 327903
Diffstat (limited to 'llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp')
-rw-r--r--llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp6
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;