[pypy-svn] r24942 - pypy/branch/explicit-exceptions/rpython/lltypesystem

mwh at codespeak.net mwh at codespeak.net
Fri Mar 24 11:35:29 CET 2006


Author: mwh
Date: Fri Mar 24 11:35:19 2006
New Revision: 24942

Modified:
   pypy/branch/explicit-exceptions/rpython/lltypesystem/lloperation.py
Log:
add 'float_pow' to the lloperation table


Modified: pypy/branch/explicit-exceptions/rpython/lltypesystem/lloperation.py
==============================================================================
--- pypy/branch/explicit-exceptions/rpython/lltypesystem/lloperation.py	(original)
+++ pypy/branch/explicit-exceptions/rpython/lltypesystem/lloperation.py	Fri Mar 24 11:35:19 2006
@@ -175,6 +175,7 @@
     'float_ge':             LLOp(canfold=True),
     'float_floor':          LLOp(canfold=True),
     'float_fmod':           LLOp(canfold=True),
+    'float_pow':            LLOp(canfold=True),
 
     'llong_is_true':        LLOp(canfold=True),
     'llong_neg':            LLOp(canfold=True),



More information about the Pypy-commit mailing list