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 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove irrelevant options
  • Loading branch information
zooba committed Feb 9, 2021
commit 9f4fdad2e07511774ac622d46d896d9e10711b85
4 changes: 2 additions & 2 deletions Include/pyport.h
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ typedef int Py_ssize_clean_t;

#if defined(_MSC_VER)
# if defined(PY_LOCAL_AGGRESSIVE) && !defined(Py_DEBUG)
/* enable more aggressive optimization for visual studio */
# pragma optimize("agtw", on)
/* 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)
Expand Down