Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-43166 Disable ceval.c optimisations for Windows debug builds #24485

Merged
merged 2 commits into from Feb 9, 2021
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

@@ -180,9 +180,9 @@ typedef int Py_ssize_clean_t;
*/

#if defined(_MSC_VER)
# if defined(PY_LOCAL_AGGRESSIVE)
/* enable more aggressive optimization for visual studio */
# pragma optimize("agtw", on)
# if defined(PY_LOCAL_AGGRESSIVE) && !defined(Py_DEBUG)
/* enable more aggressive optimization for MSVC */
# pragma optimize("gt", on)
#endif
/* ignore warnings if the compiler decides not to inline a function */
# pragma warning(disable: 4710)
ProTip! Use n and p to navigate between commits in a pull request.