forked from OSchip/llvm-project
The caching will not live in LLEE's execve() handler; that's suboptimal.
llvm-svn: 9890
This commit is contained in:
parent
fdc8d6547b
commit
8bbd8c2689
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue