diff options
author | olegendo <olegendo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-06 10:27:20 +0000 |
---|---|---|
committer | olegendo <olegendo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-06 10:27:20 +0000 |
commit | b23e5d4912c4253005b0585e0090eed66a923dc2 (patch) | |
tree | 5c80da4d8b4788522bc541036d8290d5067c7960 /gcc/lto-cgraph.c | |
parent | 8343a9351977478f4a535200a8ef0b68ee48309c (diff) | |
download | gcc-b23e5d4912c4253005b0585e0090eed66a923dc2.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205732 138bc75d-0d04-0410-961f-82ee72b054a4
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 6f2773c70ba..d2807411236 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) |