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

dry.c updated: 1.6 -> 1.7
fldry.c updated: 1.6 -> 1.7
---
Log message:

Implement SMALL_PROBLEM_SIZE.


---
Diffs of the changes:  (+8 -0)

 dry.c   |    4 ++++
 fldry.c |    4 ++++
 2 files changed, 8 insertions(+)


Index: llvm-test/SingleSource/Benchmarks/Dhrystone/dry.c
diff -u llvm-test/SingleSource/Benchmarks/Dhrystone/dry.c:1.6 
llvm-test/SingleSource/Benchmarks/Dhrystone/dry.c:1.7
--- llvm-test/SingleSource/Benchmarks/Dhrystone/dry.c:1.6       Sat Nov 25 
02:51:02 2006
+++ llvm-test/SingleSource/Benchmarks/Dhrystone/dry.c   Thu May  3 11:55:46 2007
@@ -88,7 +88,11 @@
 /*#define MYSTRFNS */
 
 /* Accuracy of timings and human fatigue controlled by next two lines */
+#ifdef SMALL_PROBLEM_SIZE
+#define LOOPS  2000000
+#else
 #define LOOPS  20000000
+#endif
 
 /* Compiler dependent options */
 #undef NOENUM                  /* Define if compiler has no enum's */


Index: llvm-test/SingleSource/Benchmarks/Dhrystone/fldry.c
diff -u llvm-test/SingleSource/Benchmarks/Dhrystone/fldry.c:1.6 
llvm-test/SingleSource/Benchmarks/Dhrystone/fldry.c:1.7
--- llvm-test/SingleSource/Benchmarks/Dhrystone/fldry.c:1.6     Sat Nov 25 
02:51:02 2006
+++ llvm-test/SingleSource/Benchmarks/Dhrystone/fldry.c Thu May  3 11:55:46 2007
@@ -88,7 +88,11 @@
 /*#define MYSTRFNS*/
 
 /* Accuracy of timings and human fatigue controlled by next two lines */
+#ifdef SMALL_PROBLEM_SIZE
+#define LOOPS  2000000
+#else
 #define LOOPS  20000000
+#endif
 
 /* Compiler dependent options */
 #undef NOENUM                  /* Define if compiler has no enum's */



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to