[llvm-commits] CVS: llvm/tools/llee/StorageProxy.c

Reid Spencer reid at x10sys.com
Mon Sep 13 08:37:44 PDT 2004



Changes in directory llvm/tools/llee:

StorageProxy.c updated: 1.3 -> 1.4
---
Log message:

Get rid of compile warning by having llvmExecve return the result of its
call to executeProgram.


---
Diffs of the changes:  (+1 -1)

Index: llvm/tools/llee/StorageProxy.c
diff -u llvm/tools/llee/StorageProxy.c:1.3 llvm/tools/llee/StorageProxy.c:1.4
--- llvm/tools/llee/StorageProxy.c:1.3	Wed Sep  1 17:55:37 2004
+++ llvm/tools/llee/StorageProxy.c	Mon Sep 13 10:37:33 2004
@@ -97,5 +97,5 @@
  */
 int llvmExecve(const char *filename, char *const argv[], char *const envp[]) {
   char* cacheFile = computeCachedFile(filename);
-  executeProgram(cacheFile, argv, envp);
+  return executeProgram(cacheFile, argv, envp);
 }






More information about the llvm-commits mailing list