[pypy-commit] pypy llvm-translation-backend: Add debug_offset() and debug_flush() stubs to the LLVM translation backend.

Manuel Jacob noreply at buildbot.pypy.org
Mon Jan 27 19:16:39 CET 2014


Author: Manuel Jacob
Branch: llvm-translation-backend
Changeset: r68963:c9c061c83ea3
Date: 2014-01-27 19:15 +0100
http://bitbucket.org/pypy/pypy/changeset/c9c061c83ea3/

Log:	Add debug_offset() and debug_flush() stubs to the LLVM translation
	backend.

diff --git a/rpython/translator/llvm/genllvm.py b/rpython/translator/llvm/genllvm.py
--- a/rpython/translator/llvm/genllvm.py
+++ b/rpython/translator/llvm/genllvm.py
@@ -1087,6 +1087,12 @@
     def op_debug_nonnull_pointer(self, result, *args):
         pass
 
+    def op_debug_offset(self, result, *args):
+        pass
+
+    def op_debug_flush(self, result, *args):
+        pass
+
     def op_track_alloc_start(self, result, *args):
         pass
 


More information about the pypy-commit mailing list