diff options
author | olegendo <olegendo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-06 10:40:53 +0000 |
---|---|---|
committer | olegendo <olegendo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-06 10:40:53 +0000 |
commit | 098f44bcc537e52bb5436cb6599346391f3d77b3 (patch) | |
tree | c0e9759f8814e01c08b304350c8e577840c81f77 /gcc/asan.c | |
parent | b23e5d4912c4253005b0585e0090eed66a923dc2 (diff) | |
download | gcc-098f44bcc537e52bb5436cb6599346391f3d77b3.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205733 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/asan.c')
-rw-r--r-- | gcc/asan.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/asan.c b/gcc/asan.c index 74140d65289..b767782cf11 100644 --- a/gcc/asan.c +++ b/gcc/asan.c @@ -1632,7 +1632,7 @@ instrument_derefs (gimple_stmt_iterator *iter, tree t, { /* For static vars if they are known not to be dynamically initialized, they will be always accessible. */ - struct varpool_node *vnode = varpool_get_node (inner); + varpool_node *vnode = varpool_get_node (inner); if (vnode && !vnode->dynamically_initialized) return; } @@ -2212,7 +2212,7 @@ asan_add_global (tree decl, tree type, vec<constructor_elt, va_gc> *v) fold_convert (const_ptr_type_node, str_cst)); CONSTRUCTOR_APPEND_ELT (vinner, NULL_TREE, fold_convert (const_ptr_type_node, module_name_cst)); - struct varpool_node *vnode = varpool_get_node (decl); + varpool_node *vnode = varpool_get_node (decl); int has_dynamic_init = vnode ? vnode->dynamically_initialized : 0; CONSTRUCTOR_APPEND_ELT (vinner, NULL_TREE, build_int_cst (uptr, has_dynamic_init)); @@ -2378,7 +2378,7 @@ static GTY(()) tree asan_ctor_statements; void asan_finish_file (void) { - struct varpool_node *vnode; + varpool_node *vnode; unsigned HOST_WIDE_INT gcount = 0; if (shadow_ptr_types[0] == NULL_TREE) |