Author: Armin Rigo <[email protected]>
Branch: fast-slowpath
Changeset: r65741:30f47cedbeab
Date: 2013-07-28 13:59 +0200
http://bitbucket.org/pypy/pypy/changeset/30f47cedbeab/

Log:    'jit_conditional_call' in the RPython program should never be
        executed. Complain more loudly if it is.

diff --git a/rpython/translator/c/funcgen.py b/rpython/translator/c/funcgen.py
--- a/rpython/translator/c/funcgen.py
+++ b/rpython/translator/c/funcgen.py
@@ -455,7 +455,7 @@
         return self.generic_call(FUNC, fnexpr, op.args[1:], op.result)
 
     def OP_JIT_CONDITIONAL_CALL(self, op):
-        return ''
+        return 'abort();  /* jit_conditional_call */'
 
     # low-level operations
     def generic_get(self, op, sourceexpr):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to