[pypy-svn] r68227 - pypy/trunk/pypy/jit/backend/llgraph

fijal at codespeak.net fijal at codespeak.net
Wed Oct 7 11:38:52 CEST 2009


Author: fijal
Date: Wed Oct  7 11:38:51 2009
New Revision: 68227

Modified:
   pypy/trunk/pypy/jit/backend/llgraph/llimpl.py
Log:
missing (rare) op


Modified: pypy/trunk/pypy/jit/backend/llgraph/llimpl.py
==============================================================================
--- pypy/trunk/pypy/jit/backend/llgraph/llimpl.py	(original)
+++ pypy/trunk/pypy/jit/backend/llgraph/llimpl.py	Wed Oct  7 11:38:51 2009
@@ -679,6 +679,8 @@
         else:
             raise NotImplementedError
 
+    op_getfield_raw_pure = op_getfield_raw
+
     def op_new(self, size):
         return do_new(size.ofs)
 



More information about the Pypy-commit mailing list