Fix pointer value in the 'complex example'
The `f` argument will reference the actual value in the `d` box, not the box in the `bar`'s stack frame.
This commit is contained in:
parent
fd2626cc3f
commit
7728742a44
1 changed files with 1 additions and 1 deletions
|
|
@ -464,7 +464,7 @@ At the end of `bar()`, it calls `baz()`:
|
|||
| (2<sup>30</sup>) - 2 | | 5 |
|
||||
| ... | ... | ... |
|
||||
| 12 | g | 100 |
|
||||
| 11 | f | → 9 |
|
||||
| 11 | f | → (2<sup>30</sup>) - 2 |
|
||||
| 10 | e | → 9 |
|
||||
| 9 | d | → (2<sup>30</sup>) - 2 |
|
||||
| 8 | c | 5 |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue