diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-04-05 23:39:08 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-04-05 23:39:08 +0000 |
commit | caf767bb027088e28460cde21c721cda681e38fc (patch) | |
tree | 4d29cb9ccf1bdb12254730b5af075ad2f5a62d80 /lib/ExecutionEngine/MCJIT | |
parent | 2c868d1eef1e52a2b3211050006344e00c461ac3 (diff) |
Remove extraneous 'return'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128959 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/MCJIT')
-rw-r--r-- | lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h b/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h index 5ac19bbdf2..b525165016 100644 --- a/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h +++ b/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h @@ -47,8 +47,7 @@ public: // the address space/sizes we're compiling on are the same as what we're // compiling for, so it uses pointer types for its addresses. Explicit // casts between them to deal with that. - return JMM->endFunctionBody(F, (uint8_t*)FunctionStart, - (uint8_t*)FunctionEnd); + JMM->endFunctionBody(F, (uint8_t*)FunctionStart, (uint8_t*)FunctionEnd); } }; |