On 07/05/2011 03:07 PM, Paul Berry wrote:
The visitor class in lower_jumps.cpp never removes or replaces the
instruction being visited, but it frequently alters or removes the
instructions that follow it. Therefore, in order to be safe, it needs
to iterate through exec_lists using foreach_list r
The visitor class in lower_jumps.cpp never removes or replaces the
instruction being visited, but it frequently alters or removes the
instructions that follow it. Therefore, in order to be safe, it needs
to iterate through exec_lists using foreach_list rather than
visit_exec_list().
Without this