Commit 720d42fa by Kaveh R. Ghazi Committed by Kaveh Ghazi

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

From-SVN: r50938
parent 6afcef6b
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>
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment