[llvm-commits] CVS: llvm-test/SingleSource/Benchmarks/Misc-C++/mandel-text.cpp

Chris Lattner lattner at cs.uiuc.edu
Tue Jan 31 08:39:49 PST 2006



Changes in directory llvm-test/SingleSource/Benchmarks/Misc-C++:

mandel-text.cpp updated: 1.1 -> 1.2
---
Log message:

allow this test to pass on x86


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

 mandel-text.cpp |    5 +++++
 1 files changed, 5 insertions(+)


Index: llvm-test/SingleSource/Benchmarks/Misc-C++/mandel-text.cpp
diff -u llvm-test/SingleSource/Benchmarks/Misc-C++/mandel-text.cpp:1.1 llvm-test/SingleSource/Benchmarks/Misc-C++/mandel-text.cpp:1.2
--- llvm-test/SingleSource/Benchmarks/Misc-C++/mandel-text.cpp:1.1	Sat Sep 24 23:39:49 2005
+++ llvm-test/SingleSource/Benchmarks/Misc-C++/mandel-text.cpp	Tue Jan 31 10:39:37 2006
@@ -47,6 +47,11 @@
               }
             }
 
+/* NOTE: This has been disabled, due to fp-precision sensitivity.  This test 
+   is effectively now just a performance test, not a correctness test. */
+            if (n < 100000)
+                putchar('X');
+            else
             if (bInside)
                 putchar(' ');
             else if (n > 4)






More information about the llvm-commits mailing list