diff options
author | Owen Anderson <resistor@mac.com> | 2009-07-01 21:58:14 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-07-01 21:58:14 +0000 |
commit | 9a452cf5cf01f265fb85f28061f9998d65e33077 (patch) | |
tree | 11a0857bcf09e8f649ef000c1b6dd791c2dcca23 | |
parent | 2e0a96963bd4ff57dde49985b438847bad93e1f9 (diff) | |
download | external_llvm-9a452cf5cf01f265fb85f28061f9998d65e33077.zip external_llvm-9a452cf5cf01f265fb85f28061f9998d65e33077.tar.gz external_llvm-9a452cf5cf01f265fb85f28061f9998d65e33077.tar.bz2 |
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74649 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/VMCore/LLVMContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/LLVMContext.cpp b/lib/VMCore/LLVMContext.cpp index be5b24f..5e75d0b 100644 --- a/lib/VMCore/LLVMContext.cpp +++ b/lib/VMCore/LLVMContext.cpp @@ -22,7 +22,7 @@ using namespace llvm; static ManagedStatic<LLVMContext> GlobalContext; -LLVMContext& llvm::getGlobalContext() { +const LLVMContext& llvm::getGlobalContext() { return *GlobalContext; } |