Commit d0bd8245 by Jan Hubicka Committed by Jan Hubicka

* cgraph.c (dump_cgraph_node): Dump init&fini priorities.

From-SVN: r212113
parent ba429440
2014-06-28 Jan Hubicka <hubicka@ucw.cz>
* cgraph.c (dump_cgraph_node): Dump init&fini priorities.
2014-06-28 Jan Hubicka <hubicka@ucw.cz>
* tree-inline.c (remap_type_1): Do not duplicate fields
that are shared in between type and its main variant.
......
......@@ -1986,6 +1986,10 @@ dump_cgraph_node (FILE *f, struct cgraph_node *node)
fprintf (f, " only_called_at_exit");
if (node->tm_clone)
fprintf (f, " tm_clone");
if (DECL_STATIC_CONSTRUCTOR (node->decl))
fprintf (f," static_constructor (priority:%i)", node->get_init_priority ());
if (DECL_STATIC_DESTRUCTOR (node->decl))
fprintf (f," static_destructor (priority:%i)", node->get_fini_priority ());
fprintf (f, "\n");
......
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