summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Kaylor <andrew.kaylor@intel.com>2013-10-21 17:42:06 +0000
committerAndrew Kaylor <andrew.kaylor@intel.com>2013-10-21 17:42:06 +0000
commit6169453ba37ac353655f2475f336e66f31276752 (patch)
tree41bbad7ba9a1eb1b2afbc0157de173b7ab893733 /include
parent770530babc78e444bb6d0aadc87702ef138293fd (diff)
downloadllvm-6169453ba37ac353655f2475f336e66f31276752.tar.gz
llvm-6169453ba37ac353655f2475f336e66f31276752.tar.bz2
llvm-6169453ba37ac353655f2475f336e66f31276752.tar.xz
Improving MCJIT/RuntimeDyld thread safety
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193094 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/ExecutionEngine/ExecutionEngine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ExecutionEngine/ExecutionEngine.h b/include/llvm/ExecutionEngine/ExecutionEngine.h
index c78faa600f..10b3fed346 100644
--- a/include/llvm/ExecutionEngine/ExecutionEngine.h
+++ b/include/llvm/ExecutionEngine/ExecutionEngine.h
@@ -153,7 +153,7 @@ protected:
void *(*LazyFunctionCreator)(const std::string &);
public:
- /// lock - This lock protects the ExecutionEngine, JIT, JITResolver and
+ /// lock - This lock protects the ExecutionEngine, MCJIT, JIT, JITResolver and
/// JITEmitter classes. It must be held while changing the internal state of
/// any of those classes.
sys::Mutex lock;