+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
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");