[pypy-svn] r53811 - pypy/branch/io-improvements/pypy/rpython/lltypesystem

fijal at codespeak.net fijal at codespeak.net
Wed Apr 16 01:28:28 CEST 2008


Author: fijal
Date: Wed Apr 16 01:28:25 2008
New Revision: 53811

Modified:
   pypy/branch/io-improvements/pypy/rpython/lltypesystem/lloperation.py
Log:
add missing ops


Modified: pypy/branch/io-improvements/pypy/rpython/lltypesystem/lloperation.py
==============================================================================
--- pypy/branch/io-improvements/pypy/rpython/lltypesystem/lloperation.py	(original)
+++ pypy/branch/io-improvements/pypy/rpython/lltypesystem/lloperation.py	Wed Apr 16 01:28:25 2008
@@ -322,8 +322,8 @@
 
     'malloc':               LLOp(canraise=(MemoryError,), canunwindgc=True),
     'malloc_varsize':       LLOp(canraise=(MemoryError,), canunwindgc=True),
-    'coalloc':              LLOp(canraise=(MemoryError,), canunwindgc=True),
-    'coalloc_varsize':      LLOp(canraise=(MemoryError,), canunwindgc=True),
+    'malloc_nonmovable':    LLOp(canunwindgc=True),
+    'malloc_nonmovable_varsize': LLOp(canunwindgc=True),
     'zero_gc_pointers_inside': LLOp(),
     'free':                 LLOp(),
     'getfield':             LLOp(sideeffects=False, canrun=True),



More information about the Pypy-commit mailing list