diff options
author | Teresa Johnson <tejohnson@google.com> | 2015-12-29 23:00:22 +0000 |
---|---|---|
committer | Teresa Johnson <tejohnson@google.com> | 2015-12-29 23:00:22 +0000 |
commit | 61b406ec755eb1e97a9abcaf7bf1d6416ba927a8 (patch) | |
tree | f483b7831665b7c99044e4efeaf2d34b9de11a82 /llvm/lib/Bitcode/Writer/ValueEnumerator.h | |
parent | 8de2f0cf01331620a2a3764eedc04b8a67781636 (diff) | |
download | bcm5719-llvm-61b406ec755eb1e97a9abcaf7bf1d6416ba927a8.tar.gz bcm5719-llvm-61b406ec755eb1e97a9abcaf7bf1d6416ba927a8.zip |
Rename MDValue* to Metadata* (NFC)
Renamed MDValue* to Metadata*, and MDValueToValIDMap to MetadataToIDs,
as per review for r255909.
llvm-svn: 256593
Diffstat (limited to 'llvm/lib/Bitcode/Writer/ValueEnumerator.h')
-rw-r--r-- | llvm/lib/Bitcode/Writer/ValueEnumerator.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Bitcode/Writer/ValueEnumerator.h b/llvm/lib/Bitcode/Writer/ValueEnumerator.h index abe383d7ee4..9fb8325150e 100644 --- a/llvm/lib/Bitcode/Writer/ValueEnumerator.h +++ b/llvm/lib/Bitcode/Writer/ValueEnumerator.h @@ -63,7 +63,7 @@ private: std::vector<const Metadata *> MDs; SmallVector<const LocalAsMetadata *, 8> FunctionLocalMDs; typedef DenseMap<const Metadata *, unsigned> MetadataMapType; - MetadataMapType MDValueMap; + MetadataMapType MetadataMap; bool HasMDString; bool HasDILocation; bool HasGenericDINode; @@ -93,7 +93,7 @@ private: /// before incorporation. unsigned NumModuleValues; - /// When a function is incorporated, this is the size of the MDValues list + /// When a function is incorporated, this is the size of the Metadatas list /// before incorporation. unsigned NumModuleMDs; @@ -117,7 +117,7 @@ public: return ID - 1; } unsigned getMetadataOrNullID(const Metadata *MD) const { - return MDValueMap.lookup(MD); + return MetadataMap.lookup(MD); } unsigned numMDs() const { return MDs.size(); } |