[pypy-commit] pypy llvm-translation-backend: Add stub implementation for debug_assert_not_none llop.

mjacob pypy.commits at gmail.com
Mon Apr 10 13:09:04 EDT 2017


Author: Manuel Jacob <me at manueljacob.de>
Branch: llvm-translation-backend
Changeset: r91030:320090532fe1
Date: 2017-04-10 17:27 +0200
http://bitbucket.org/pypy/pypy/changeset/320090532fe1/

Log:	Add stub implementation for debug_assert_not_none llop.

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
@@ -1103,6 +1103,9 @@
     def op_debug_assert(self, result, *args):
         pass
 
+    def op_debug_assert_not_none(self, result, *args):
+        pass
+
     def op_debug_llinterpcall(self, result, *args):
         self.w('call void @abort() noreturn nounwind')
         if result.type is not LLVMVoid:


More information about the pypy-commit mailing list