[llvm-commits] CVS: llvm-test/SingleSource/Benchmarks/Shootout/fib2.c

Chris Lattner lattner at cs.uiuc.edu
Thu May 25 11:31:26 PDT 2006



Changes in directory llvm-test/SingleSource/Benchmarks/Shootout:

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

Restore the problem size


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

 fib2.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm-test/SingleSource/Benchmarks/Shootout/fib2.c
diff -u llvm-test/SingleSource/Benchmarks/Shootout/fib2.c:1.3 llvm-test/SingleSource/Benchmarks/Shootout/fib2.c:1.4
--- llvm-test/SingleSource/Benchmarks/Shootout/fib2.c:1.3	Thu May 25 12:25:32 2006
+++ llvm-test/SingleSource/Benchmarks/Shootout/fib2.c	Thu May 25 13:31:14 2006
@@ -1,5 +1,5 @@
 /* -*- mode: c -*-
- * $Id: fib2.c,v 1.3 2006/05/25 17:25:32 lattner Exp $
+ * $Id: fib2.c,v 1.4 2006/05/25 18:31:14 lattner Exp $
  * http://www.bagley.org/~doug/shootout/
  */
 
@@ -16,7 +16,7 @@
 
 int
 main(int argc, char *argv[]) {
-    int N = ((argc == 2) ? atoi(argv[1]) : 4);
+    int N = ((argc == 2) ? atoi(argv[1]) : 43);
     printf("%ld\n", fib(N));
     return(0);
 }






More information about the llvm-commits mailing list