aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/LLVMContext.h
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2009-09-28 21:41:20 +0000
committerDevang Patel <dpatel@apple.com>2009-09-28 21:41:20 +0000
commite30e678865b8dc1b69ef1c26e7567ffd1300553c (patch)
tree1951754273d36be30da5e6d1ccaea38f7a461000 /include/llvm/LLVMContext.h
parenta2148402ce39fb3aad09e98a32078d3853a01ae9 (diff)
s/class Metadata/class MetadataContext/g
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83019 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/LLVMContext.h')
-rw-r--r--include/llvm/LLVMContext.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/LLVMContext.h b/include/llvm/LLVMContext.h
index 5e8cd1a88e..42b4ea69b9 100644
--- a/include/llvm/LLVMContext.h
+++ b/include/llvm/LLVMContext.h
@@ -18,7 +18,7 @@
namespace llvm {
class LLVMContextImpl;
-class Metadata;
+class MetadataContext;
/// This is an important class for using LLVM in a threaded context. It
/// (opaquely) owns and manages the core "global" data of LLVM's core
/// infrastructure, including the type and constant uniquing tables.
@@ -30,7 +30,7 @@ class LLVMContext {
void operator=(LLVMContext&);
public:
LLVMContextImpl* pImpl;
- Metadata &getMetadata();
+ MetadataContext &getMetadata();
bool RemoveDeadMetadata();
LLVMContext();
~LLVMContext();