Remove extraneous 'return'.
authorJim Grosbach <grosbach@apple.com>
Tue, 5 Apr 2011 23:39:08 +0000 (23:39 +0000)
committerJim Grosbach <grosbach@apple.com>
Tue, 5 Apr 2011 23:39:08 +0000 (23:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128959 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h

index 5ac19bbdf292d0f91ae6f1f9f6ee12d93ca6caff..b525165016944070b15752165e5da78da9168774 100644 (file)
@@ -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);
   }
 
 };