Commit cf6b9ef1 by Nathan Sidwell Committed by Nathan Sidwell

tree-ssa-pre.c (bitmap_print_value_set): Fix uninitialized variable.

	* tree-ssa-pre.c (bitmap_print_value_set): Fix uninitialized
	variable.

From-SVN: r90658
parent 461c6fce
2004-11-15 Nathan Sidwell <nathan@codesourcery.com>
* tree-ssa-pre.c (bitmap_print_value_set): Fix uninitialized
variable.
2004-11-14 Richard Henderson <rth@redhat.com>
PR 18480
......
......@@ -768,7 +768,7 @@ bitmap_print_value_set (FILE *outfile, bitmap_set_t set,
fprintf (outfile, "%s[%d] := { ", setname, blockindex);
if (set)
{
bool first;
bool first = true;
unsigned i;
bitmap_iterator bi;
......
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