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 | 3d94802526a044f83caf8b5c980ff67691d44c97 (patch) | |
tree | ccc254ed7e9375ffcf8e80cea2ccd16e7863c83a | |
parent | d1d1e83b06a0e19a9f6d065b29d0a74622b97aef (diff) | |
download | external_llvm-3d94802526a044f83caf8b5c980ff67691d44c97.zip external_llvm-3d94802526a044f83caf8b5c980ff67691d44c97.tar.gz external_llvm-3d94802526a044f83caf8b5c980ff67691d44c97.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
-rw-r--r-- | include/llvm/LLVMContext.h | 3 | ||||
-rw-r--r-- | lib/VMCore/LLVMContext.cpp | 7 |
2 files changed, 10 insertions, 0 deletions
diff --git a/include/llvm/LLVMContext.h b/include/llvm/LLVMContext.h index 01c64a8..1d95502 100644 --- a/include/llvm/LLVMContext.h +++ b/include/llvm/LLVMContext.h @@ -197,6 +197,9 @@ public: VectorType* getVectorTypeTruncatedElement(const VectorType* VTy); }; +/// FOR BACKWARDS COMPATIBILITY - Returns a global context. +LLVMContext* getGlobalContext(); + } #endif 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; } |