From: Richard Henderson Date: Wed, 1 Nov 2000 17:28:02 +0000 (-0800) Subject: * stmt.c (expand_start_null_loop): Set continue_label. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ba89764ab1af5cdbf760d68129d7fd5f6e98e490;p=gcc.git * stmt.c (expand_start_null_loop): Set continue_label. From-SVN: r37192 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 13a6999054f..f4630512f64 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-11-01 Richard Henderson + + * stmt.c (expand_start_null_loop): Set continue_label. + 2000-11-01 Bernd Schmidt * builtins.c (fold_builtin_constant_p, fold_builtin): New functions. diff --git a/gcc/stmt.c b/gcc/stmt.c index fd0647aef18..b433dd96c83 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -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;