summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAndrew Kaylor <andrew.kaylor@intel.com>2013-10-08 17:15:11 +0000
committerAndrew Kaylor <andrew.kaylor@intel.com>2013-10-08 17:15:11 +0000
commiteb59e4d5ac15604643540b3aa1e5628d2d440dfc (patch)
treedf158d24ddcce01a42279880f872f1c70b0e3b21 /tools
parent2565de926b64b0777c2a192b53ac1ab43fc42a70 (diff)
downloadllvm-eb59e4d5ac15604643540b3aa1e5628d2d440dfc.tar.gz
llvm-eb59e4d5ac15604643540b3aa1e5628d2d440dfc.tar.bz2
llvm-eb59e4d5ac15604643540b3aa1e5628d2d440dfc.tar.xz
Removing unintended code block from lli
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192205 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/lli/lli.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp
index ac0d219272..5578a1da31 100644
--- a/tools/lli/lli.cpp
+++ b/tools/lli/lli.cpp
@@ -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