-
-
Notifications
You must be signed in to change notification settings - Fork 31k
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
Remove unused DPRINTF in ceval.c #129282
Remove unused DPRINTF in ceval.c #129282
Conversation
Most changes to Python require a NEWS entry. Add one using the blurb_it web app or the blurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
PS: I've stumbled over the immediately following lines ; // dummy statement after a label, before a declaration
uint16_t uopcode; where I think the first can be removed and the second dedented? |
This shouldn't be tied to the tail call issue, as it's an unrelated improvement. Otherwise everything LGTM. Thanks!. I'll just de-link it and approve it. |
Woops forgot to submit the approval, but I did look through it before merging. Sorry! |
Is this worth a PR? If so, I'd happily create one. Most probably again a |
I think that's used in the tier 2 interpreter? |
Edited: please scratch that, that's part of |
Oh, sorry, my bad, I think now understand. That belongs to // Tier 2 is also here!
enter_tier_two: about 25 lines above, in case Sorry for the noise. |
Per encouragement from @Fidget-Spinner in #129113 (comment).
DPRINTF
was introduced in 7e135a4, but is currently unused.Alternatively, I can modify it to use
frame->lltrace
, sincelltrace
has been moved into the frame (#129113).I think this is a
skip news
?