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 | f642c1b600767a163cc3b078cc6f95c9709970c3 (patch) | |
tree | eee4307d48f9ca09ef8937a20a075fd427f989cb /llvm/lib/ExecutionEngine | |
parent | f6e327c6a3fb587cfdcf6e2022896d7c0b909637 (diff) | |
download | bcm5719-llvm-f642c1b600767a163cc3b078cc6f95c9709970c3.tar.gz bcm5719-llvm-f642c1b600767a163cc3b078cc6f95c9709970c3.zip |
Remove extraneous 'return'.
llvm-svn: 128959
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h b/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h index 5ac19bbdf29..b5251650169 100644 --- a/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h +++ b/llvm/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); } }; |