Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(177)

Unified Diff: function_reordering_plugin/callgraph.c

Issue 5825054: [google][4.6]Make option -freorder-functions= invoke function reordering linker plugin Base URL: svn+ssh://gcc.gnu.org/svn/gcc/branches/google/gcc-4_6/
Patch Set: [google][4.6]Make option -freorder-functions= invoke function reordering linker plugin Created 13 years ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | function_reordering_plugin/function_reordering_plugin.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « no previous file | function_reordering_plugin/function_reordering_plugin.c » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b