8000 gh-105481: add pseudo-instructions to the cases DSL by iritkatriel · Pull Request #105506 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-105481: add pseudo-instructions to the cases DSL #105506

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

Merged
merged 11 commits into from
Jun 11, 2023
Prev Previous commit
Next Next commit
typo
  • Loading branch information
iritkatriel authored Jun 8, 2023
commit de0a2ff96abf32f860a766ef0d23f8617d25895e
2 changes: 1 addition & 1 deletion Tools/cases_generator/generate_cases.py
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,7 @@ def write_metadata(self) -> None:
self.out.emit("#endif")

def write_pseudo_instrs(self) -> None:
"""Write the IS_PSEUDO_OPCODE macro"""
"""Write the IS_PSEUDO_INSTR macro"""
self.out.emit("\n\n#define IS_PSEUDO_INSTR(OP) \\")
for op in self.pseudos:
self.out.emit(f" ((OP) == {op}) || \\")
Expand Down
0