[pypy-svn] r65054 - pypy/branch/pyjitpl5/pypy/jit/backend/test

arigo at codespeak.net arigo at codespeak.net
Tue May 5 14:06:23 CEST 2009


Author: arigo
Date: Tue May  5 14:06:20 2009
New Revision: 65054

Modified:
   pypy/branch/pyjitpl5/pypy/jit/backend/test/test_ll_random.py
Log:
These two lines included (by accident?) with r65045
don't make sense.


Modified: pypy/branch/pyjitpl5/pypy/jit/backend/test/test_ll_random.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/backend/test/test_ll_random.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/test/test_ll_random.py	Tue May  5 14:06:20 2009
@@ -199,8 +199,6 @@
                 w = r.choice(builder.intvars)
             if rffi.cast(lltype.Signed, rffi.cast(TYPE, w.value)) == w.value:
                 break
-        if not 0 <= w.value <= 256:
-            w = builder.do(rop.INT_AND, [w, ConstInt(0xff)])
         builder.do(self.opnum, [v, w], descr)
 
 class NewOperation(test_random.AbstractOperation):



More information about the Pypy-commit mailing list