Author: Christian Tismer <tis...@stackless.com> Branch: win64-stage1 Changeset: r53522:d304616b6b87 Date: 2012-03-13 18:11 -0700 http://bitbucket.org/pypy/pypy/changeset/d304616b6b87/
Log: Merge with default diff --git a/pypy/rpython/lltypesystem/module/ll_math.py b/pypy/rpython/lltypesystem/module/ll_math.py --- a/pypy/rpython/lltypesystem/module/ll_math.py +++ b/pypy/rpython/lltypesystem/module/ll_math.py @@ -114,10 +114,8 @@ while VERY_LARGE_FLOAT * 100.0 != INFINITY: VERY_LARGE_FLOAT *= 64.0 -_lib_isnan = rffi.llexternal("_isnan", [lltype.Float], lltype.Signed, - compilation_info=eci) -_lib_finite = rffi.llexternal("_finite", [lltype.Float], lltype.Signed, - compilation_info=eci) +_lib_isnan = llexternal("_isnan", [lltype.Float], lltype.Signed) +_lib_finite = llexternal("_finite", [lltype.Float], lltype.Signed) def ll_math_isnan(y): # By not calling into the external function the JIT can inline this. _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit