From: Misha Brukman Date: Tue, 11 Nov 2003 18:23:09 +0000 (+0000) Subject: The caching will not live in LLEE's execve() handler; that's suboptimal. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=fa33a1323252b55724f74f279317dd8ea72e7230;p=oota-llvm.git The caching will not live in LLEE's execve() handler; that's suboptimal. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9890 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llee/ExecveHandler.c b/tools/llee/ExecveHandler.c index 4b740147adf..c289f575960 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.