From: Reid Spencer Date: Mon, 13 Sep 2004 15:37:33 +0000 (+0000) Subject: Get rid of compile warning by having llvmExecve return the result of its X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6dd3713be5786eb66372107fe12bcd2be548f090;p=oota-llvm.git Get rid of compile warning by having llvmExecve return the result of its call to executeProgram. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16306 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llee/StorageProxy.c b/tools/llee/StorageProxy.c index 05ffdf4b4c7..e4f3fbb0d43 100644 --- a/tools/llee/StorageProxy.c +++ b/tools/llee/StorageProxy.c @@ -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); }