-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
gh-121404: rename compiler_addop* to codegen_addop*, and replace direct usages by the macros #123043
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
Conversation
…e direct usages by the macros
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.
Just to be sure, but you are not introducing new macros right? it's just moving them around right and replacing parts of the code with existing macros? if so, could you maybe consider merging #120018 first so that those macros use do-while constructions and then apply your changes? (you can also first merge your PR and I'll take care of conflicts in my branch if you don't want to be held up).
I think I added one or two macros with |
Let's merge your PR first. It'll be easier for me to solve the conflicts afterwards and that way, you don't have to change this branch in particular (my PR is not outstanding btw but I appreciate the qualifier 😄) |
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 good.
…e direct usages by the macros (python#123043)
…e direct usages by the macros (python#123043)
Also organises them at the top with the macros next to the functions they are invoking.
(e.g.,
ADDOP
needed to move before thecodegen_addop_*
functions that now use it).