[llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/McCat/09-vor/vor.c
Reid Spencer
reid at x10sys.com
Mon Dec 4 22:16:08 PST 2006
Changes in directory llvm-test/MultiSource/Benchmarks/McCat/09-vor:
vor.c updated: 1.1 -> 1.2
---
Log message:
Make this test return 0 reliably.
---
Diffs of the changes: (+2 -2)
vor.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm-test/MultiSource/Benchmarks/McCat/09-vor/vor.c
diff -u llvm-test/MultiSource/Benchmarks/McCat/09-vor/vor.c:1.1 llvm-test/MultiSource/Benchmarks/McCat/09-vor/vor.c:1.2
--- llvm-test/MultiSource/Benchmarks/McCat/09-vor/vor.c:1.1 Mon May 12 13:25:11 2003
+++ llvm-test/MultiSource/Benchmarks/McCat/09-vor/vor.c Tue Dec 5 00:15:53 2006
@@ -355,9 +355,9 @@
/* ********************************************************************* */
/* PROCEDURE: main - starts the program */
-void main(int argc, char *argv[])
+int main(int argc, char *argv[])
{
get_file();
construct_vor();
-
+ return 0;
}
More information about the llvm-commits
mailing list