[pypy-commit] pypy libgccjit-backend: Get test_noops to pass

dmalcolm noreply at buildbot.pypy.org
Tue Dec 23 22:27:40 CET 2014


Author: David Malcolm <dmalcolm at redhat.com>
Branch: libgccjit-backend
Changeset: r75094:5e659ec2cfd9
Date: 2014-12-23 16:35 -0500
http://bitbucket.org/pypy/pypy/changeset/5e659ec2cfd9/

Log:	Get test_noops to pass

diff --git a/rpython/jit/backend/libgccjit/assembler.py b/rpython/jit/backend/libgccjit/assembler.py
--- a/rpython/jit/backend/libgccjit/assembler.py
+++ b/rpython/jit/backend/libgccjit/assembler.py
@@ -1067,6 +1067,11 @@
             self.ctxt.new_cast(self.expr_to_rvalue(resop._arg1),
                                t_field))
 
+    def emit_debug_merge_point(self, resop):
+        pass # noop
+    def emit_jit_debug(self, resop):
+        pass # noop
+
     # "INT_*_OVF" operations:
     def _impl_int_ovf(self, resop, builtin_name):
         """


More information about the pypy-commit mailing list