[pypy-svn] r15580 - pypy/dist/pypy/translator/llvm2/test

ericvrp at codespeak.net ericvrp at codespeak.net
Wed Aug 3 22:57:12 CEST 2005


Author: ericvrp
Date: Wed Aug  3 22:57:12 2005
New Revision: 15580

Modified:
   pypy/dist/pypy/translator/llvm2/test/test_typed.py
Log:
llvm rem (float mod) was implemented incorrect.
After communication with llvm people they fixed it in llvm cvs (untested by me)
see: http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=611


Modified: pypy/dist/pypy/translator/llvm2/test/test_typed.py
==============================================================================
--- pypy/dist/pypy/translator/llvm2/test/test_typed.py	(original)
+++ pypy/dist/pypy/translator/llvm2/test/test_typed.py	Wed Aug  3 22:57:12 2005
@@ -211,7 +211,8 @@
 
 # floats 
 def test_float_operations(): 
-    py.test.skip("llvm rem operation doesnt seem to work...")    
+    py.test.skip("llvm rem operation doesnt seem to work...fixed in llvm cvs")    
+    #see: http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=611
     def func(x, y): 
         z = x + y / 2.1 * x 
         z = z % 60.0



More information about the Pypy-commit mailing list