summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTeresa Johnson <tejohnson@google.com>2015-12-29 23:00:22 +0000
committerTeresa Johnson <tejohnson@google.com>2015-12-29 23:00:22 +0000
commit8a32dc47d61f3c12f95f5cf7dd1d67ed7c6c00cd (patch)
treebf7c549dfab87953d8ff66c049a4f2eb13cb7c38 /include
parent1ae1fbe339498bb2eb25c5f3526d396d1ace755f (diff)
Rename MDValue* to Metadata* (NFC)
Renamed MDValue* to Metadata*, and MDValueToValIDMap to MetadataToIDs, as per review for r255909. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256593 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/IR/GVMaterializer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/IR/GVMaterializer.h b/include/llvm/IR/GVMaterializer.h
index 489cbf58dfa..6cb593c7a3d 100644
--- a/include/llvm/IR/GVMaterializer.h
+++ b/include/llvm/IR/GVMaterializer.h
@@ -52,8 +52,8 @@ public:
/// instantiations. If OnlyTempMD is true, only those that have remained
/// temporary metadata are recorded in the map.
virtual void
- saveMDValueList(DenseMap<const Metadata *, unsigned> &MDValueToValIDMap,
- bool OnlyTempMD) {}
+ saveMetadataList(DenseMap<const Metadata *, unsigned> &MetadataToIDs,
+ bool OnlyTempMD) {}
virtual std::vector<StructType *> getIdentifiedStructTypes() const = 0;
};