Index: function_reordering_plugin/callgraph.c |
=================================================================== |
--- function_reordering_plugin/callgraph.c (revision 185372) |
+++ function_reordering_plugin/callgraph.c (working copy) |
@@ -435,10 +435,9 @@ find_pettis_hansen_function_layout (FILE *fp) |
assert (node_chain != NULL); |
assert (active_edges != NULL); |
- assert (fp != NULL); |
+ if (fp != NULL) |
+ dump_edges (fp); |
- dump_edges (fp); |
- |
/* Go over all the nodes and set it as real node only if a corresponding |
function section exists. */ |
for (n_it = node_chain; n_it != NULL; n_it = n_it->next) |
@@ -509,7 +508,8 @@ write_out_node (FILE *fp, char *name, |
Section_id *s = (Section_id *)slot; |
handles[position] = s->handle; |
shndx[position] = s->shndx; |
- fprintf (fp, "%s\n", s->full_name); |
+ if (fp != NULL) |
+ fprintf (fp, "%s\n", s->full_name); |
/* No more use of full_name */ |
free (s->full_name); |
} |
@@ -524,8 +524,6 @@ get_layout (FILE *fp, void*** handles, |
Node *it; |
int position = 0; |
- assert (fp != NULL); |
- |
*handles = XNEWVEC (void *, num_real_nodes); |
*shndx = XNEWVEC (unsigned int, num_real_nodes); |