Skip to content

Commit

Permalink
Fix another typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cfbolz committed Jul 22, 2024
1 parent 6600c12 commit fb39fe2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ inefficiencies. Here's a few examples:
already in place, so this will be a relatively easy fix).
- `(x & 0xffffffff) | ((x >> 32) << 32) == x`. Having the JIT optimize this
would maybe require first recognizing that `(x >> 32) << 32` can be expressed
as a mask: `(x & 0xffffffff00000000)`, and then using `(x & c1) | (x & c1) ==
as a mask: `(x & 0xffffffff00000000)`, and then using `(x & c1) | (x & c2) ==
x & (c1 | c2)`
- A commonly occurring pattern is variations of this one:
`((x & 1345) ^ 2048) - 2048 == x & 1345` (with different constants, of
Expand Down

0 comments on commit fb39fe2

Please sign in to comment.