1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Removing unintended code block from lli

llvm-svn: 192205
This commit is contained in:
Andrew Kaylor 2013-10-08 17:15:11 +00:00
parent 033ddf451a
commit d7a81f88ad

View File

@ -489,15 +489,6 @@ int main(int argc, char **argv, char * const *envp) {
// Create the remote target.
Target->create();
// FIXME: Don't commit like this. I don't think these calls are necessary.
#if 0
// Trigger compilation.
EE->generateCodeForModule(Mod);
// Get everything ready to execute.
EE->finalizeModule(Mod);
#endif
// Since we're executing in a (at least simulated) remote address space,
// we can't use the ExecutionEngine::runFunctionAsMain(). We have to
// grab the function address directly here and tell the remote target