Commit ba89764a by Richard Henderson Committed by Richard Henderson

* stmt.c (expand_start_null_loop): Set continue_label.

From-SVN: r37192
parent b0b3afb2
2000-11-01 Richard Henderson <rth@redhat.com>
* stmt.c (expand_start_null_loop): Set continue_label.
2000-11-01 Bernd Schmidt <bernds@redhat.co.uk> 2000-11-01 Bernd Schmidt <bernds@redhat.co.uk>
* builtins.c (fold_builtin_constant_p, fold_builtin): New functions. * builtins.c (fold_builtin_constant_p, fold_builtin): New functions.
......
...@@ -2310,7 +2310,7 @@ expand_start_null_loop () ...@@ -2310,7 +2310,7 @@ expand_start_null_loop ()
thisloop->data.loop.start_label = emit_note (NULL, NOTE_INSN_DELETED); thisloop->data.loop.start_label = emit_note (NULL, NOTE_INSN_DELETED);
thisloop->data.loop.end_label = gen_label_rtx (); thisloop->data.loop.end_label = gen_label_rtx ();
thisloop->data.loop.alt_end_label = NULL_RTX; thisloop->data.loop.alt_end_label = NULL_RTX;
thisloop->data.loop.continue_label = NULL_RTX; thisloop->data.loop.continue_label = thisloop->data.loop.end_label;
thisloop->exit_label = thisloop->data.loop.end_label; thisloop->exit_label = thisloop->data.loop.end_label;
loop_stack = thisloop; loop_stack = thisloop;
nesting_stack = thisloop; nesting_stack = thisloop;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment