Author: hager <sven.ha...@uni-duesseldorf.de>
Branch: ppc-jit-backend
Changeset: r50246:120ce67e8e79
Date: 2011-12-07 15:40 +0100
http://bitbucket.org/pypy/pypy/changeset/120ce67e8e79/

Log:    float not supported yet

diff --git a/pypy/jit/backend/ppc/ppcgen/regalloc.py 
b/pypy/jit/backend/ppc/ppcgen/regalloc.py
--- a/pypy/jit/backend/ppc/ppcgen/regalloc.py
+++ b/pypy/jit/backend/ppc/ppcgen/regalloc.py
@@ -145,7 +145,7 @@
             if loc.is_reg():
                 self.rm.reg_bindings[arg] = loc
             elif loc.is_vfp_reg():
-                self.vfprm.reg_bindings[arg] = loc
+                assert 0, "not implemented yet"
             else:
                 assert loc.is_stack()
                 self.frame_manager.frame_bindings[arg] = loc
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to