Skip to content

Commit

Permalink
s/L1/L0, sigh
Browse files Browse the repository at this point in the history
  • Loading branch information
nikomatsakis committed Sep 25, 2023
1 parent ece5f9d commit 98308db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/blog/2023-09-22-polonius-part-1.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ flowchart LR
classDef trace text-align:left,fill:yellow;
```

...we can trace the transitive predecessors of `'1` to see that it contains only `{L0}` (I've highlighted those predecessors in yellow in the graph). This means that there is no live variable whose origins contains L0, so we add a kill for L0.
...we can trace the transitive predecessors of `'1` to see that it contains only `{L1}` (I've highlighted those predecessors in yellow in the graph). This means that there is no live variable whose origins contains `L0`, so we add a kill for `L0`.

#### No error on `true` branch

Expand Down

0 comments on commit 98308db

Please sign in to comment.