◐ Shell
clean mode source ↗

gh-111786: Turn off optimize for speed for _PyEval_EvalFrameDefault on MSVC by mdboom · Pull Request #111794 · python/cpython

added 5 commits

November 6, 2023 02:30

gvanrossum

markshannon

@mdboom mdboom marked this pull request as draft

November 7, 2023 17:48

@mdboom mdboom marked this pull request as ready for review

November 7, 2023 18:38

@mdboom

gvanrossum

aisk pushed a commit to aisk/cpython that referenced this pull request

Feb 11, 2024
…SVC for PGO (python#111794)

In PGO mode, this function caused a compiler error in MSVC.
It turns out that optimizing for space only save the day, and is even faster.
However, without PGO, this is neither necessary nor slower.

Glyphack pushed a commit to Glyphack/cpython that referenced this pull request

Sep 2, 2024
…SVC for PGO (python#111794)

In PGO mode, this function caused a compiler error in MSVC.
It turns out that optimizing for space only save the day, and is even faster.
However, without PGO, this is neither necessary nor slower.