Skip to content

Commit

Permalink
Merge pull request #145 from pypy/jit-dsl-typo
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
cfbolz authored Nov 10, 2024
2 parents 5078911 + ab5eaa4 commit 4fa637f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posts/2024/10/jit-peephole-dsl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ target operation. To do that, there can be extra assignments between the rule he
and the rule target.::

sub_add_consts: int_sub(int_add(x, C1), C2) # incomplete
C = C1 + C1
C = C1 + C2
=> int_sub(x, C)

The right hand side of such an assignment is a subset of Python syntax,
Expand Down

0 comments on commit 4fa637f

Please sign in to comment.