* ifcvt.c (dead_or_predicable): Fix uninitialized variable.

From-SVN: r50938
This commit is contained in:
Kaveh R. Ghazi 2002-03-18 00:16:50 +00:00 committed by Kaveh Ghazi
parent 6afcef6bd2
commit 720d42faff
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2002-03-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* ifcvt.c (dead_or_predicable): Fix uninitialized variable.
* predict.c (estimate_bb_frequencies): Delete unused variables.
2002-03-17 Richard Henderson <rth@redhat.com>

View File

@ -2433,7 +2433,7 @@ dead_or_predicable (test_bb, merge_bb, other_bb, new_dest, reversep)
basic_block new_dest;
int reversep;
{
rtx head, end, jump, earliest, old_dest, new_label;
rtx head, end, jump, earliest, old_dest, new_label = NULL_RTX;
jump = test_bb->end;