[llvm-commits] CVS: llvm-test/SingleSource/Benchmarks/Misc-C++/mandel-text.cpp
Lauro Ramos Venancio
lauro.venancio at gmail.com
Thu May 3 09:56:37 PDT 2007
Changes in directory llvm-test/SingleSource/Benchmarks/Misc-C++:
mandel-text.cpp updated: 1.2 -> 1.3
---
Log message:
Implement SMALL_PROBLEM_SIZE.
---
Diffs of the changes: (+4 -0)
mandel-text.cpp | 4 ++++
1 files changed, 4 insertions(+)
Index: llvm-test/SingleSource/Benchmarks/Misc-C++/mandel-text.cpp
diff -u llvm-test/SingleSource/Benchmarks/Misc-C++/mandel-text.cpp:1.2 llvm-test/SingleSource/Benchmarks/Misc-C++/mandel-text.cpp:1.3
--- llvm-test/SingleSource/Benchmarks/Misc-C++/mandel-text.cpp:1.2 Tue Jan 31 10:39:37 2006
+++ llvm-test/SingleSource/Benchmarks/Misc-C++/mandel-text.cpp Thu May 3 11:55:46 2007
@@ -7,7 +7,11 @@
// number of iterations before we quit
int maxiter = 255;
+#ifdef SMALL_PROBLEM_SIZE
+ int slowdown = 20;
+#else
int slowdown = 2000;
+#endif
// size and position of the rect on the imaginary plane
double fViewRectReal = -2.3, fViewRectImg = -1.0;
More information about the llvm-commits
mailing list