Open
Description
Related to #146.
In Figure 7.15 the output of explicate_control
is outdated:
start:
init.514 = 42
tmp.517 = free_ptr
tmp.518 = (tmp.517 + 16)
tmp.519 = fromspace_end
if tmp.518 < tmp.519:
goto block.529
else:
goto block.530
Here, GlobalValue
is not treated as atomic.
The example should look like this instead:
start:
init.514 = 42
tmp.517 = (free_ptr + 16)
if tmp.517 < fromspace_end:
goto block.529
else:
goto block.530
Metadata
Metadata
Assignees
Labels
No labels