summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2011-04-05 23:39:08 +0000
committerJim Grosbach <grosbach@apple.com>2011-04-05 23:39:08 +0000
commitcaf767bb027088e28460cde21c721cda681e38fc (patch)
tree4d29cb9ccf1bdb12254730b5af075ad2f5a62d80 /lib
parent2c868d1eef1e52a2b3211050006344e00c461ac3 (diff)
downloadllvm-caf767bb027088e28460cde21c721cda681e38fc.tar.gz
llvm-caf767bb027088e28460cde21c721cda681e38fc.tar.bz2
llvm-caf767bb027088e28460cde21c721cda681e38fc.tar.xz
Remove extraneous 'return'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128959 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h3
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);
}
};