diff options
author | Eli Bendersky <eli.bendersky@intel.com> | 2012-04-29 12:40:47 +0000 |
---|---|---|
committer | Eli Bendersky <eli.bendersky@intel.com> | 2012-04-29 12:40:47 +0000 |
commit | 0e2ac5bcdbffaae68a48d74ff71e8774d27df7ef (patch) | |
tree | 207f2c72b9df9b6c336bf005499bb887ddb1adf6 /llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp | |
parent | 968b63c72d20ec24e92cf57979c1dbb28fceb66c (diff) | |
download | bcm5719-llvm-0e2ac5bcdbffaae68a48d74ff71e8774d27df7ef.tar.gz bcm5719-llvm-0e2ac5bcdbffaae68a48d74ff71e8774d27df7ef.zip |
Fix some formatting, grammar and style issues and add a couple of missing comments.
llvm-svn: 155793
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp b/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp index 2d1775c05c1..7be6ef8cba9 100644 --- a/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp +++ b/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp @@ -852,7 +852,7 @@ static int jit_noop() { /// for resolving library symbols, not code generated symbols. /// void *DefaultJITMemoryManager::getPointerToNamedFunction(const std::string &Name, - bool AbortOnFailure) { + bool AbortOnFailure) { // Check to see if this is one of the functions we want to intercept. Note, // we cast to intptr_t here to silence a -pedantic warning that complains // about casting a function pointer to a normal pointer. |