diff options
author | David Malcolm <dmalcolm@redhat.com> | 2013-10-30 15:58:45 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2013-10-30 15:58:45 +0000 |
commit | 378cd6b1e33e389c62974ae0f248d1e5372de26a (patch) | |
tree | 2555fd77eaf78406bd17dffd34604b54db824b62 /gcc/symtab.c | |
parent | a26891f4f59a90038cab4067a06553d362c46de7 (diff) | |
download | gcc-378cd6b1e33e389c62974ae0f248d1e5372de26a.zip gcc-378cd6b1e33e389c62974ae0f248d1e5372de26a.tar.gz gcc-378cd6b1e33e389c62974ae0f248d1e5372de26a.tar.bz2 |
Split symtab_node declarations onto multiple lines
gcc/
* cgraphunit.c (analyze_functions): Split symtab_node
declarations onto multiple lines to make things easier
for rename_symtab.py.
* symtab.c (symtab_dissolve_same_comdat_group_list): Likewise.
(symtab_semantically_equivalent_p): Likewise.
gcc/lto
* lto-symtab.c (lto_symtab_merge_decls_2): Split symtab_node
declarations onto multiple lines to make things easier for
rename_symtab.py.
(lto_symtab_merge_decls_1): Likewise.
(lto_symtab_merge_symbols_1): Likewise.
From-SVN: r204216
Diffstat (limited to 'gcc/symtab.c')
-rw-r--r-- | gcc/symtab.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/symtab.c b/gcc/symtab.c index eb57a99..0bfa4e5 100644 --- a/gcc/symtab.c +++ b/gcc/symtab.c @@ -442,7 +442,8 @@ symtab_add_to_same_comdat_group (symtab_node new_node, void symtab_dissolve_same_comdat_group_list (symtab_node node) { - symtab_node n = node, next; + symtab_node n = node; + symtab_node next; if (!node->same_comdat_group) return; @@ -1129,7 +1130,8 @@ symtab_semantically_equivalent_p (symtab_node a, symtab_node b) { enum availability avail; - symtab_node ba, bb; + symtab_node ba; + symtab_node bb; /* Equivalent functions are equivalent. */ if (a->decl == b->decl) |