Re: [PATCH v2 3/6] Split symtab_node declarations onto multiple lines

2013-10-30 Thread David Malcolm
On Tue, 2013-09-10 at 15:36 +0200, Jan Hubicka wrote: Amongst other things, the rename_symtab.py script converts symtab_node to symtab_node *. This will lead to broken code on declarations that declare more than one variable (only the first would get a *), so split up such

Re: [PATCH v2 3/6] Split symtab_node declarations onto multiple lines

2013-09-10 Thread Jan Hubicka
Amongst other things, the rename_symtab.py script converts symtab_node to symtab_node *. This will lead to broken code on declarations that declare more than one variable (only the first would get a *), so split up such declarations. gcc/ * cgraphunit.c (analyze_functions): Split

[PATCH v2 3/6] Split symtab_node declarations onto multiple lines

2013-09-09 Thread David Malcolm
Amongst other things, the rename_symtab.py script converts symtab_node to symtab_node *. This will lead to broken code on declarations that declare more than one variable (only the first would get a *), so split up such declarations. gcc/ * cgraphunit.c (analyze_functions): Split