diff options
-rw-r--r-- | tools/llee/ExecveHandler.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/tools/llee/ExecveHandler.c b/tools/llee/ExecveHandler.c index 4b740147ad..c289f57596 100644 --- a/tools/llee/ExecveHandler.c +++ b/tools/llee/ExecveHandler.c @@ -65,14 +65,8 @@ int execve(const char *filename, char *const argv[], char *const envp[]) free(fileAddr); } llvmExecve(realFilename, argv, envp); - } else { - /* - * Not in cache: save translation - */ - //llvmSaveFile(realFilename, addr, len); - //fprintf(stderr, "Cached: '%s'\n", realFilename); - } - + } + /* * This is a bytecode file, so execute the JIT with the program and * parameters. |