Hi! Just a random comment:
On Fri, Aug 01, 2014 at 01:35:47PM +0200, Martin Liška wrote: > @@ -357,8 +356,8 @@ cgraph_process_new_functions (void) > break; > } > } > - free_cgraph_node_set (cgraph_new_nodes); > - cgraph_new_nodes = NULL; > + > + cgraph_new_nodes.release (); > } Please watch out formatting. This used to be indented by 2 spaces, but you changed it to 4, that doesn't look right. Jakub