Author: Armin Rigo <ar...@tunes.org>
Branch: 
Changeset: r74228:41343203ab73
Date: 2014-10-25 17:21 +0200
http://bitbucket.org/pypy/pypy/changeset/41343203ab73/

Log:    oops

diff --git a/rpython/jit/backend/llsupport/descr.py 
b/rpython/jit/backend/llsupport/descr.py
--- a/rpython/jit/backend/llsupport/descr.py
+++ b/rpython/jit/backend/llsupport/descr.py
@@ -317,7 +317,7 @@
     return 0
 def _missing_call_stub_r(func, args_i, args_r, args_f):
     return lltype.nullptr(llmemory.GCREF.TO)
-def _missing_call_stub_f(func,args_i,args_r,args_f):
+def _missing_call_stub_f(func, args_i, args_r, args_f):
     return longlong.ZEROF
 
 class CallDescr(AbstractDescr):
@@ -342,7 +342,7 @@
         self.extrainfo = extrainfo
         self.ffi_flags = ffi_flags
         self.call_stub_i = _missing_call_stub_i
-        self.call_stub_t = _missing_call_stub_r
+        self.call_stub_r = _missing_call_stub_r
         self.call_stub_f = _missing_call_stub_f
         # NB. the default ffi_flags is 1, meaning FUNCFLAG_CDECL, which
         # makes sense on Windows as it's the one for all the C functions
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to