* stmt.c (expand_start_null_loop): Set continue_label.

From-SVN: r37192
This commit is contained in:
Richard Henderson 2000-11-01 09:28:02 -08:00 committed by Richard Henderson
parent b0b3afb2f3
commit ba89764ab1
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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>
* builtins.c (fold_builtin_constant_p, fold_builtin): New functions.

View File

@ -2310,7 +2310,7 @@ expand_start_null_loop ()
thisloop->data.loop.start_label = emit_note (NULL, NOTE_INSN_DELETED);
thisloop->data.loop.end_label = gen_label_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;
loop_stack = thisloop;
nesting_stack = thisloop;