[pypy-svn] pypy jit-longlong: Fix.

arigo commits-noreply at bitbucket.org
Fri Jan 7 18:11:36 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: jit-longlong
Changeset: r40468:f237804e16e5
Date: 2011-01-07 18:09 +0100
http://bitbucket.org/pypy/pypy/changeset/f237804e16e5/

Log:	Fix.

diff --git a/pypy/jit/backend/llsupport/descr.py b/pypy/jit/backend/llsupport/descr.py
--- a/pypy/jit/backend/llsupport/descr.py
+++ b/pypy/jit/backend/llsupport/descr.py
@@ -337,7 +337,7 @@
         return longlong2float(r_longlong(x))
     assert isinstance(x, float)
     return x
-cast_to_float._annspecialcase_ = 'specialize:arg(0)'
+cast_to_float._annspecialcase_ = 'specialize:argtype(0)'
 
 
 class BaseIntCallDescr(BaseCallDescr):


More information about the Pypy-commit mailing list