Author: David Schneider <[email protected]>
Branch: arm-backend-2
Changeset: r52845:7a2349cfc51e
Date: 2012-02-24 10:08 +0000
http://bitbucket.org/pypy/pypy/changeset/7a2349cfc51e/

Log:    handle force_spill operation in llgraph backend

diff --git a/pypy/jit/backend/llgraph/runner.py 
b/pypy/jit/backend/llgraph/runner.py
--- a/pypy/jit/backend/llgraph/runner.py
+++ b/pypy/jit/backend/llgraph/runner.py
@@ -179,6 +179,8 @@
 
     def _compile_operations(self, c, operations, var2index, clt):
         for op in operations:
+            if op.getopnum() == -124: # force_spill
+                continue
             llimpl.compile_add(c, op.getopnum())
             descr = op.getdescr()
             if isinstance(descr, Descr):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to