[llvm-commits] CVS: llvm-test/SingleSource/Benchmarks/Shootout/ackermann.c
Brian Gaeke
gaeke at persephone.cs.uiuc.edu
Mon Sep 20 11:55:27 PDT 2004
Changes in directory llvm-test/SingleSource/Benchmarks/Shootout:
ackermann.c updated: 1.3 -> 1.4
---
Log message:
ack(3,12) takes more than 5 minutes on the sparcs...
---
Diffs of the changes: (+2 -2)
Index: llvm-test/SingleSource/Benchmarks/Shootout/ackermann.c
diff -u llvm-test/SingleSource/Benchmarks/Shootout/ackermann.c:1.3 llvm-test/SingleSource/Benchmarks/Shootout/ackermann.c:1.4
--- llvm-test/SingleSource/Benchmarks/Shootout/ackermann.c:1.3 Tue Jun 8 12:21:42 2004
+++ llvm-test/SingleSource/Benchmarks/Shootout/ackermann.c Mon Sep 20 13:55:11 2004
@@ -1,5 +1,5 @@
/* -*- mode: c -*-
- * $Id: ackermann.c,v 1.3 2004/06/08 17:21:42 lattner Exp $
+ * $Id: ackermann.c,v 1.4 2004/09/20 18:55:11 gaeke Exp $
* http://www.bagley.org/~doug/shootout/
*/
@@ -15,7 +15,7 @@
int
main(int argc, char *argv[]) {
- int n = ((argc == 2) ? atoi(argv[1]) : 12);
+ int n = ((argc == 2) ? atoi(argv[1]) : 8);
printf("Ack(3,%d): %d\n", n, Ack(3, n));
return(0);
More information about the llvm-commits
mailing list