[pypy-svn] r77692 - pypy/branch/jitffi/pypy/jit/backend/llsupport/test

antocuni at codespeak.net antocuni at codespeak.net
Thu Oct 7 17:27:13 CEST 2010


Author: antocuni
Date: Thu Oct  7 17:27:11 2010
New Revision: 77692

Modified:
   pypy/branch/jitffi/pypy/jit/backend/llsupport/test/test_ffisupport.py
Log:
fix the test. ffi_type_pointer is really treated as an integer


Modified: pypy/branch/jitffi/pypy/jit/backend/llsupport/test/test_ffisupport.py
==============================================================================
--- pypy/branch/jitffi/pypy/jit/backend/llsupport/test/test_ffisupport.py	(original)
+++ pypy/branch/jitffi/pypy/jit/backend/llsupport/test/test_ffisupport.py	Thu Oct  7 17:27:11 2010
@@ -7,7 +7,7 @@
     args = [types.sint, types.double, types.pointer]
     descr = get_call_descr_dynamic(args, types.void)
     assert isinstance(descr, VoidCallDescr)
-    assert descr.arg_classes == 'ifr'
+    assert descr.arg_classes == 'ifi'
 
     descr = get_call_descr_dynamic([], types.sint8)
     assert isinstance(descr, DynamicIntCallDescr)



More information about the Pypy-commit mailing list