diff options
author | Oleg Endo <olegendo@gcc.gnu.org> | 2013-12-06 10:27:20 +0000 |
---|---|---|
committer | Oleg Endo <olegendo@gcc.gnu.org> | 2013-12-06 10:27:20 +0000 |
commit | 6a5ac314de999025863ed86335d57dd640597577 (patch) | |
tree | 5c80da4d8b4788522bc541036d8290d5067c7960 /gcc/lto-cgraph.c | |
parent | 041508a2ec3b8f19e3d46b8925892e9c0cbb4273 (diff) | |
download | gcc-6a5ac314de999025863ed86335d57dd640597577.zip gcc-6a5ac314de999025863ed86335d57dd640597577.tar.gz gcc-6a5ac314de999025863ed86335d57dd640597577.tar.bz2 |
cgraphunit.c: Remove struct tags when referring to class ipa_opt_pass_d or class opt_pass.
* cgraphunit.c: Remove struct tags when referring to class
ipa_opt_pass_d or class opt_pass.
* function.h: Likewise.
* lto-cgraph.c: Likewise.
* pass_manager.h: Likewise.
* passes.c: Likewise.
* tree-pass.h: Likewise.
From-SVN: r205732
Diffstat (limited to 'gcc/lto-cgraph.c')
-rw-r--r-- | gcc/lto-cgraph.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/lto-cgraph.c b/gcc/lto-cgraph.c index 6f2773c..d280741 100644 --- a/gcc/lto-cgraph.c +++ b/gcc/lto-cgraph.c @@ -389,7 +389,7 @@ lto_output_node (struct lto_simple_output_block *ob, struct cgraph_node *node, intptr_t ref; bool in_other_partition = false; struct cgraph_node *clone_of, *ultimate_clone_of; - struct ipa_opt_pass_d *pass; + ipa_opt_pass_d *pass; int i; bool alias_p; @@ -1060,12 +1060,12 @@ input_node (struct lto_file_decl_data *file_data, node->ipa_transforms_to_apply = vNULL; for (i = 0; i < count; i++) { - struct opt_pass *pass; + opt_pass *pass; int pid = streamer_read_hwi (ib); gcc_assert (pid < passes->passes_by_id_size); pass = passes->passes_by_id[pid]; - node->ipa_transforms_to_apply.safe_push ((struct ipa_opt_pass_d *) pass); + node->ipa_transforms_to_apply.safe_push ((ipa_opt_pass_d *) pass); } if (tag == LTO_symtab_analyzed_node) |