Author: hager <[email protected]>
Branch: ppc-jit-backend
Changeset: r47963:b4d0f25e4cf8
Date: 2011-10-12 14:56 +0200
http://bitbucket.org/pypy/pypy/changeset/b4d0f25e4cf8/
Log: Fixed bug in emit_guard_true.
diff --git a/pypy/jit/backend/ppc/ppcgen/opassembler.py
b/pypy/jit/backend/ppc/ppcgen/opassembler.py
--- a/pypy/jit/backend/ppc/ppcgen/opassembler.py
+++ b/pypy/jit/backend/ppc/ppcgen/opassembler.py
@@ -47,7 +47,7 @@
l0 = arglocs[0]
failargs = arglocs[1:]
self.mc.cmpi(l0.value, 0)
- self._emit_guard(op, failargs, c.opposites[c.EQ])
+ self._emit_guard(op, failargs, c.EQ)
# # ^^^^ If this condition is met,
# # then the guard fails.
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit