diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 20939cabc3b5..c435e08d11fe 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +Wed Sep 30 19:33:07 1998 Jeffrey A Law (law@cygnus.com) + + * reorg.c (check_annul_list_true_false): Remove unused variables. + (steal_delay_list_from_target): Add missing "used_annul" variable. + (try_merge_delay_insns): Close out half formed comment. + Wed Sep 30 19:13:20 1998 Zack Weinberg * toplev.c (documented_lang_options): Recognize -include, diff --git a/gcc/reorg.c b/gcc/reorg.c index 7b1b017f4f6c..71c1cf2c918b 100644 --- a/gcc/reorg.c +++ b/gcc/reorg.c @@ -1635,7 +1635,7 @@ check_annul_list_true_false (annul_true_p, delay_list) int annul_true_p; rtx delay_list; { - rtx temp, trial; + rtx temp; if (delay_list) { @@ -1692,6 +1692,7 @@ steal_delay_list_from_target (insn, condition, seq, delay_list, rtx new_delay_list = 0; int must_annul = *pannul_p; int i; + int used_annul = 0; /* We can't do anything if there are more delay slots in SEQ than we can handle, or if we don't know that it will be a taken branch. @@ -2002,7 +2003,8 @@ try_merge_delay_insns (insn, thread) } else { - /* Keep track of the set/referenced resources for + /* Keep track of the set/referenced resources for the delay + slots of any trial insns we encounter. */ mark_set_resources (dtrial, &set, 0, 1); mark_referenced_resources (dtrial, &needed, 1); }