diff options
author | Owen Anderson <resistor@mac.com> | 2009-06-30 23:39:59 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-06-30 23:39:59 +0000 |
commit | db47ed0925ce97f3134189c96ebc35b2cdae1ce3 (patch) | |
tree | ccc254ed7e9375ffcf8e80cea2ccd16e7863c83a /lib/VMCore | |
parent | d9627e11bfd5e120e6430597bb72fe3c64341e2c (diff) | |
download | external_llvm-db47ed0925ce97f3134189c96ebc35b2cdae1ce3.zip external_llvm-db47ed0925ce97f3134189c96ebc35b2cdae1ce3.tar.gz external_llvm-db47ed0925ce97f3134189c96ebc35b2cdae1ce3.tar.bz2 |
Add a global context, for easing backwards compatibility.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74574 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/LLVMContext.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/VMCore/LLVMContext.cpp b/lib/VMCore/LLVMContext.cpp index e0fe6ab..09c7fcc 100644 --- a/lib/VMCore/LLVMContext.cpp +++ b/lib/VMCore/LLVMContext.cpp @@ -15,10 +15,17 @@ #include "llvm/LLVMContext.h" #include "llvm/Constants.h" #include "llvm/DerivedTypes.h" +#include "llvm/Support/ManagedStatic.h" #include "LLVMContextImpl.h" using namespace llvm; +static ManagedStatic<LLVMContext> GlobalContext; + +LLVMContext* getGlobalContext() { + return &*GlobalContext; +} + LLVMContext::LLVMContext() : pImpl(new LLVMContextImpl()) { } LLVMContext::~LLVMContext() { delete pImpl; } |