1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Remove extraneous 'return'.

llvm-svn: 128959
This commit is contained in:
Jim Grosbach 2011-04-05 23:39:08 +00:00
parent 48b39632aa
commit 5530392fa3

View 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);
}
};