mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
bpo-43271: Re-enable ceval.c optimizations for Windows debug builds (GH-24739)
Partially reverts commit b74396c316
The optimizations are necessary to prevent the interpreter from
crashing in a number of tests involving recursion.
This commit is contained in:
parent
8747c1f233
commit
131d551640
2 changed files with 3 additions and 1 deletions
|
@ -182,8 +182,9 @@ typedef int Py_ssize_clean_t;
|
|||
*/
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
# if defined(PY_LOCAL_AGGRESSIVE) && !defined(Py_DEBUG)
|
||||
# if defined(PY_LOCAL_AGGRESSIVE)
|
||||
/* enable more aggressive optimization for MSVC */
|
||||
/* active in both release and debug builds - see bpo-43271 */
|
||||
# pragma optimize("gt", on)
|
||||
#endif
|
||||
/* ignore warnings if the compiler decides not to inline a function */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue