aboutsummaryrefslogtreecommitdiff
path: root/gcc/cgraphunit.c
diff options
context:
space:
mode:
authorOleg Endo <olegendo@gcc.gnu.org>2013-12-06 10:40:53 +0000
committerOleg Endo <olegendo@gcc.gnu.org>2013-12-06 10:40:53 +0000
commit2c8326a568110fcecb88677b521ef4e3ba4effe9 (patch)
treec0e9759f8814e01c08b304350c8e577840c81f77 /gcc/cgraphunit.c
parent6a5ac314de999025863ed86335d57dd640597577 (diff)
downloadgcc-2c8326a568110fcecb88677b521ef4e3ba4effe9.zip
gcc-2c8326a568110fcecb88677b521ef4e3ba4effe9.tar.gz
gcc-2c8326a568110fcecb88677b521ef4e3ba4effe9.tar.bz2
asan.c: Remove struct tags when referring to class varpool_node.
* asan.c: Remove struct tags when referring to class varpool_node. * cgraph.h: Likewise. * cgraphbuild.c: Likewise. * cgraphunit.c: Likewise. * dbxout.c: Likewise. * dwarf2out.c: Likewise. * gimple-fold.c: Likewise. * ipa-devirt.c: Likewise. * ipa-ref-inline.h: Likewise. * ipa-ref.h: Likewise. * ipa-reference.c: Likewise. * ipa-utils.c: Likewise. * ipa.c: Likewise. * lto-cgraph.c: Likewise. * lto-streamer-out.c: Likewise. * lto-streamer.h: Likewise. * passes.c: Likewise. * toplev.c: Likewise. * tree-eh.c: Likewise. * tree-emutls.c: Likewise. * tree-pass.h: Likewise. * tree-ssa-structalias.c: Likewise. * tree-vectorizer.c: Likewise. * tree.c: Likewise. * varasm.c: Likewise. * varpool.c: Likewise. * cp/decl2.c: Remove struct tags when referring to class varpool_node. * lto/lto.c: Remove struct tags when referring to class varpool_node. * lto/lto-partition.c: Likewise. * lto/lto-symtab.c: Likewise. From-SVN: r205733
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r--gcc/cgraphunit.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c
index 7aee8d6..44f3afd 100644
--- a/gcc/cgraphunit.c
+++ b/gcc/cgraphunit.c
@@ -737,10 +737,10 @@ process_common_attributes (tree decl)
static void
process_function_and_variable_attributes (struct cgraph_node *first,
- struct varpool_node *first_var)
+ varpool_node *first_var)
{
struct cgraph_node *node;
- struct varpool_node *vnode;
+ varpool_node *vnode;
for (node = cgraph_first_function (); node != first;
node = cgraph_next_function (node))
@@ -813,7 +813,7 @@ process_function_and_variable_attributes (struct cgraph_node *first,
void
varpool_finalize_decl (tree decl)
{
- struct varpool_node *node = varpool_node_for_decl (decl);
+ varpool_node *node = varpool_node_for_decl (decl);
gcc_assert (TREE_STATIC (decl) || DECL_EXTERNAL (decl));
@@ -928,8 +928,8 @@ analyze_functions (void)
intermodule optimization. */
static struct cgraph_node *first_analyzed;
struct cgraph_node *first_handled = first_analyzed;
- static struct varpool_node *first_analyzed_var;
- struct varpool_node *first_handled_var = first_analyzed_var;
+ static varpool_node *first_analyzed_var;
+ varpool_node *first_handled_var = first_analyzed_var;
struct pointer_set_t *reachable_call_targets = pointer_set_create ();
symtab_node *node;
@@ -1891,7 +1891,7 @@ struct cgraph_order_sort
union
{
struct cgraph_node *f;
- struct varpool_node *v;
+ varpool_node *v;
struct asm_node *a;
} u;
};
@@ -1909,7 +1909,7 @@ output_in_order (void)
struct cgraph_order_sort *nodes;
int i;
struct cgraph_node *pf;
- struct varpool_node *pv;
+ varpool_node *pv;
struct asm_node *pa;
max = symtab_order;