diff options
Diffstat (limited to 'gcc/ipa-reference.c')
-rw-r--r-- | gcc/ipa-reference.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ipa-reference.c b/gcc/ipa-reference.c index 9780acf7470..9427fd5db8c 100644 --- a/gcc/ipa-reference.c +++ b/gcc/ipa-reference.c @@ -770,7 +770,7 @@ ipa_init (void) to variables defined within this unit. */ static void -analyze_variable (struct cgraph_varpool_node *vnode) +analyze_variable (struct varpool_node *vnode) { tree global = vnode->decl; if (TREE_CODE (global) == VAR_DECL) @@ -892,7 +892,7 @@ static unsigned int static_execute (void) { struct cgraph_node *node; - struct cgraph_varpool_node *vnode; + struct varpool_node *vnode; struct cgraph_node *w; struct cgraph_node **order = xcalloc (cgraph_n_nodes, sizeof (struct cgraph_node *)); @@ -902,7 +902,7 @@ static_execute (void) ipa_init (); /* Process all of the variables first. */ - for (vnode = cgraph_varpool_nodes_queue; vnode; vnode = vnode->next_needed) + for (vnode = varpool_nodes_queue; vnode; vnode = vnode->next_needed) analyze_variable (vnode); /* Process all of the functions next. |