-
-
Notifications
You must be signed in to change notification settings - Fork 31.2k
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
gh-98831: rewrite CHECK_EG_MATCH opcode in the instruction definition DSL #101269
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like this one wasn't trivial. Thanks!
Misc/NEWS.d/next/Core and Builtins/2023-01-23-22-06-07.gh-issue-98831.FkCDuV.rst
Outdated
Show resolved
Hide resolved
This reverts commit 48d0fcb.
I'll kick off the buildbots in case refcount. |
🤖 New build scheduled with the buildbot fleet by @iritkatriel for commit 93d98ab 🤖 If you want to schedule another build, you need to add the |
PPC64 Fedora PR is failing with "No space left on device", so I wouldn't worry about that one. :) |
The change in exception_group_match is needed because previously in the case of match == None the opcode didn't look at rest, but now it pushes to the stack (even though it's already there) to keep the code uniform with the match != None case.