Skip to content

Commit a0e1173

Browse files
Enable tier 2 and tail call
1 parent f52a3a5 commit a0e1173

File tree

3 files changed

+1
-26
lines changed

3 files changed

+1
-26
lines changed

configure

Lines changed: 0 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configure.ac

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7041,19 +7041,6 @@ fi
70417041
],
70427042
[AC_MSG_RESULT([no value specified])])
70437043

7044-
# Do not enable tail-calling interpreter if tier 2 is enabled.
7045-
AS_VAR_IF(
7046-
[tier2_flags],
7047-
[],
7048-
[
7049-
case "$ac_cv_tail_call" in yes*)
7050-
AC_DEFINE([Py_TAIL_CALL_INTERP], [1],
7051-
[Define if the C compiler supports efficient proper tail calls.])
7052-
esac
7053-
],
7054-
[]
7055-
)
7056-
70577044

70587045
case $ac_sys_system in
70597046
AIX*)

pyconfig.h.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1718,7 +1718,7 @@
17181718
/* The version of SunOS/Solaris as reported by `uname -r' without the dot. */
17191719
#undef Py_SUNOS_VERSION
17201720

1721-
/* Define if the C compiler supports efficient proper tail calls. */
1721+
/* Define if you want to use tail-calling interpreters in CPython. */
17221722
#undef Py_TAIL_CALL_INTERP
17231723

17241724
/* Define if you want to enable tracing references for debugging purpose */

0 commit comments

Comments
 (0)