Skip to content

Commit fb39fe2

Browse files
committed
Fix another typo
1 parent 6600c12 commit fb39fe2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

posts/2024/07/mining-jit-traces-missing-optimizations-z3.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ inefficiencies. Here's a few examples:
220220
already in place, so this will be a relatively easy fix).
221221
- `(x & 0xffffffff) | ((x >> 32) << 32) == x`. Having the JIT optimize this
222222
would maybe require first recognizing that `(x >> 32) << 32` can be expressed
223-
as a mask: `(x & 0xffffffff00000000)`, and then using `(x & c1) | (x & c1) ==
223+
as a mask: `(x & 0xffffffff00000000)`, and then using `(x & c1) | (x & c2) ==
224224
x & (c1 | c2)`
225225
- A commonly occurring pattern is variations of this one:
226226
`((x & 1345) ^ 2048) - 2048 == x & 1345` (with different constants, of

0 commit comments

Comments
 (0)