aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/DebugInfo/CodeView/DebugChecksumsSubsection.cpp
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2018-03-20 18:37:03 +0000
committerZachary Turner <zturner@google.com>2018-03-20 18:37:03 +0000
commitfced530650414f4f0901567e12b4c6318d70d811 (patch)
tree0d0b80a649be55951f55dbeb5bee9bba67fb93a7 /llvm/lib/DebugInfo/CodeView/DebugChecksumsSubsection.cpp
parent9362753a699dee4b7041204ab169fd1e84fef039 (diff)
downloadllvm-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/DebugChecksumsSubsection.cpp')
-rw-r--r--llvm/lib/DebugInfo/CodeView/DebugChecksumsSubsection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/DebugChecksumsSubsection.cpp b/llvm/lib/DebugInfo/CodeView/DebugChecksumsSubsection.cpp
index 0f155a9..ccc20eb 100644
--- a/llvm/lib/DebugInfo/CodeView/DebugChecksumsSubsection.cpp
+++ b/llvm/lib/DebugInfo/CodeView/DebugChecksumsSubsection.cpp
@@ -109,7 +109,7 @@ Error DebugChecksumsSubsection::commit(BinaryStreamWriter &Writer) const {
}
uint32_t DebugChecksumsSubsection::mapChecksumOffset(StringRef FileName) const {
- uint32_t Offset = Strings.getIdForString(FileName);
+ uint32_t Offset = Strings.getStringId(FileName);
auto Iter = OffsetMap.find(Offset);
assert(Iter != OffsetMap.end());
return Iter->second;