[llvm-commits] CVS: llvm/tools/jello/jello.cpp

Misha Brukman brukman at cs.uiuc.edu
Tue Oct 29 20:19:01 PST 2002


Changes in directory llvm/tools/jello:

jello.cpp updated: 1.3 -> 1.4

---
Log message:

Return 0 instead of 1 for correct execution. Makes automated testing happy.


---
Diffs of the changes:

Index: llvm/tools/jello/jello.cpp
diff -u llvm/tools/jello/jello.cpp:1.3 llvm/tools/jello/jello.cpp:1.4
--- llvm/tools/jello/jello.cpp:1.3	Tue Oct 29 15:48:31 2002
+++ llvm/tools/jello/jello.cpp	Tue Oct 29 20:18:29 2002
@@ -58,6 +58,6 @@
   // on demand.
   Passes.run(*M.get());
   
-  return 1;
+  return 0;
 }
 





More information about the llvm-commits mailing list