Remove extraneous 'return'.

llvm-svn: 128959
This commit is contained in:
Jim Grosbach 2011-04-05 23:39:08 +00:00
parent f6e327c6a3
commit f642c1b600
1 changed files with 1 additions and 2 deletions

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