diff options
author | Reid Kleckner <rnk@google.com> | 2019-04-04 00:28:48 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2019-04-04 00:28:48 +0000 |
commit | e10d00419ab749170301ef6b902b86bb2fb56da1 (patch) | |
tree | e301a26421fd35546acc13ecf0ec64e4a8954c9c /llvm/lib/DebugInfo/PDB | |
parent | 15f0057e66c58c390d5cd813fe98864d844f1e0d (diff) | |
download | bcm5719-llvm-e10d00419ab749170301ef6b902b86bb2fb56da1.tar.gz bcm5719-llvm-e10d00419ab749170301ef6b902b86bb2fb56da1.zip |
[codeview] Remove Type member from CVRecord
Summary:
Now CVType and CVSymbol are effectively type-safe wrappers around
ArrayRef<uint8_t>. Make the kind() accessor load it from the
RecordPrefix, which is the same for types and symbols.
Reviewers: zturner, aganea
Subscribers: hiraditya, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60018
llvm-svn: 357658
Diffstat (limited to 'llvm/lib/DebugInfo/PDB')
-rw-r--r-- | llvm/lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp b/llvm/lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp index a52b7e0c4e4..69e831570e3 100644 --- a/llvm/lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp +++ b/llvm/lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp @@ -36,8 +36,8 @@ struct llvm::pdb::GSIHashStreamBuilder { return Empty; } static inline CVSymbol getTombstoneKey() { - static CVSymbol Tombstone(static_cast<SymbolKind>(-1), - ArrayRef<uint8_t>()); + static CVSymbol Tombstone( + DenseMapInfo<ArrayRef<uint8_t>>::getTombstoneKey()); return Tombstone; } static unsigned getHashValue(const CVSymbol &Val) { |