From ba89764ab1af5cdbf760d68129d7fd5f6e98e490 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Wed, 1 Nov 2000 09:28:02 -0800 Subject: [PATCH] * stmt.c (expand_start_null_loop): Set continue_label. From-SVN: r37192 --- gcc/ChangeLog | 4 ++++ gcc/stmt.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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; -- 2.30.2