[pypy-commit] pypy record-exact-value: ( yodada, cfbolz )

yodada pypy.commits at gmail.com
Mon Apr 8 18:12:42 EDT 2019


Author: Lin Cheng <lc873 at cornell.edu>
Branch: record-exact-value
Changeset: r96426:a73fe4ae5748
Date: 2019-04-08 18:11 -0400
http://bitbucket.org/pypy/pypy/changeset/a73fe4ae5748/

Log:	( yodada, cfbolz )

	Added the missing definition of OP_JIT_RECORD_EXACT_VALUE in
	rpython/translator/c/src/support.h

diff --git a/rpython/translator/c/src/support.h b/rpython/translator/c/src/support.h
--- a/rpython/translator/c/src/support.h
+++ b/rpython/translator/c/src/support.h
@@ -7,6 +7,7 @@
 
 #define RUNNING_ON_LLINTERP	0
 #define OP_JIT_RECORD_EXACT_CLASS(i, c, r)  /* nothing */
+#define OP_JIT_RECORD_EXACT_VALUE(i, c, r)  /* nothing */
 
 #define FAIL_OVF(msg) _RPyRaiseSimpleException(RPyExc_OverflowError)
 


More information about the pypy-commit mailing list