diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-04-24 20:16:42 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-04-24 20:16:42 +0000 |
commit | 391fc56ffd1831565ce3050442a562529665d101 (patch) | |
tree | 44a1d8f217830a46bcbbba789f7f8ca989374b25 /llvm/lib/IR/LLVMContextImpl.h | |
parent | 44e768e777cbb4c8c3a4ecf92cf3f6809d5643a9 (diff) | |
download | bcm5719-llvm-391fc56ffd1831565ce3050442a562529665d101.tar.gz bcm5719-llvm-391fc56ffd1831565ce3050442a562529665d101.zip |
IR: Rename LLVMContextImpl::MetadataStore to InstructionMetadata
Rename `MetadataStore` to the more explicit `InstructionMetadata`. This
will make room for `FunctionMetadata` (start of PR23340).
llvm-svn: 235763
Diffstat (limited to 'llvm/lib/IR/LLVMContextImpl.h')
-rw-r--r-- | llvm/lib/IR/LLVMContextImpl.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/lib/IR/LLVMContextImpl.h b/llvm/lib/IR/LLVMContextImpl.h index 4eb37fd14be..aa4c697455b 100644 --- a/llvm/lib/IR/LLVMContextImpl.h +++ b/llvm/lib/IR/LLVMContextImpl.h @@ -954,10 +954,9 @@ public: typedef std::pair<unsigned, TrackingMDNodeRef> MDPairTy; typedef SmallVector<MDPairTy, 2> MDMapTy; - /// MetadataStore - Collection of per-instruction metadata used in this - /// context. - DenseMap<const Instruction *, MDMapTy> MetadataStore; - + /// Collection of per-instruction metadata used in this context. + DenseMap<const Instruction *, MDMapTy> InstructionMetadata; + /// DiscriminatorTable - This table maps file:line locations to an /// integer representing the next DWARF path discriminator to assign to /// instructions in different blocks at the same location. |