summaryrefslogtreecommitdiff
path: root/gcc/cgraphunit.c
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2013-10-30 15:58:45 +0000
committerDavid Malcolm <dmalcolm@gcc.gnu.org>2013-10-30 15:58:45 +0000
commit378cd6b1e33e389c62974ae0f248d1e5372de26a (patch)
tree2555fd77eaf78406bd17dffd34604b54db824b62 /gcc/cgraphunit.c
parenta26891f4f59a90038cab4067a06553d362c46de7 (diff)
downloadgcc-378cd6b1e33e389c62974ae0f248d1e5372de26a.tar.gz
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/cgraphunit.c')
-rw-r--r--gcc/cgraphunit.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c
index 060ee70d7d4..39fb1427b6c 100644
--- a/gcc/cgraphunit.c
+++ b/gcc/cgraphunit.c
@@ -920,7 +920,8 @@ analyze_functions (void)
struct varpool_node *first_handled_var = first_analyzed_var;
struct pointer_set_t *reachable_call_targets = pointer_set_create ();
- symtab_node node, next;
+ symtab_node node;
+ symtab_node next;
int i;
struct ipa_ref *ref;
bool changed = true;