mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-01 07:44:05 +08:00
* ipa-reference.c (propagate): Only dump bitmaps if computed.
From-SVN: r154818
This commit is contained in:
parent
c5fdd4ad97
commit
40513dd30b
@ -1,3 +1,7 @@
|
||||
2009-11-30 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* ipa-reference.c (propagate): Only dump bitmaps if computed.
|
||||
|
||||
2009-11-30 Olga Golovanevsky <olga@il.ibm.com>
|
||||
|
||||
PR middle-end/39806
|
||||
|
@ -1389,22 +1389,23 @@ propagate (void)
|
||||
ipa_reference_local_vars_info_t w_l = w_ri->local;
|
||||
fprintf (dump_file, "\n next cycle: %s/%i ",
|
||||
cgraph_node_name (w), w->uid);
|
||||
fprintf (dump_file, "\n locals read: ");
|
||||
EXECUTE_IF_SET_IN_BITMAP (w_l->statics_read,
|
||||
0, index, bi)
|
||||
{
|
||||
fprintf (dump_file, "%s ",
|
||||
get_static_name (index));
|
||||
}
|
||||
fprintf (dump_file, "\n locals read: ");
|
||||
if (w_l->statics_read)
|
||||
EXECUTE_IF_SET_IN_BITMAP (w_l->statics_read,
|
||||
0, index, bi)
|
||||
{
|
||||
fprintf (dump_file, "%s ",
|
||||
get_static_name (index));
|
||||
}
|
||||
|
||||
fprintf (dump_file, "\n locals written: ");
|
||||
EXECUTE_IF_SET_IN_BITMAP (w_l->statics_written,
|
||||
0, index, bi)
|
||||
{
|
||||
fprintf(dump_file, "%s ",
|
||||
get_static_name (index));
|
||||
}
|
||||
|
||||
if (w_l->statics_written)
|
||||
EXECUTE_IF_SET_IN_BITMAP (w_l->statics_written,
|
||||
0, index, bi)
|
||||
{
|
||||
fprintf (dump_file, "%s ",
|
||||
get_static_name (index));
|
||||
}
|
||||
|
||||
w_info = (struct ipa_dfs_info *) w->aux;
|
||||
w = w_info->next_cycle;
|
||||
|
Loading…
Reference in New Issue
Block a user