Removing unintended code block from lli
authorAndrew Kaylor <andrew.kaylor@intel.com>
Tue, 8 Oct 2013 17:15:11 +0000 (17:15 +0000)
committerAndrew Kaylor <andrew.kaylor@intel.com>
Tue, 8 Oct 2013 17:15:11 +0000 (17:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192205 91177308-0d34-0410-b5e6-96231b3b80d8

tools/lli/lli.cpp

index ac0d2192724f4e6bd03719f5c72c9396320bd066..5578a1da31a4c5b352a243d7c6ef806835693e31 100644 (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