Get rid of compile warning by having llvmExecve return the result of its

call to executeProgram.

llvm-svn: 16306
This commit is contained in:
Reid Spencer 2004-09-13 15:37:33 +00:00
parent 56d4b17288
commit eafdda000c
1 changed files with 1 additions and 1 deletions

View File

@ -97,5 +97,5 @@ void* llvmReadFile(const char *key, size_t *size) {
*/
int llvmExecve(const char *filename, char *const argv[], char *const envp[]) {
char* cacheFile = computeCachedFile(filename);
executeProgram(cacheFile, argv, envp);
return executeProgram(cacheFile, argv, envp);
}