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/cgraphunit.c | |
parent | 041508a2ec3b8f19e3d46b8925892e9c0cbb4273 (diff) | |
download | gcc-6a5ac314de999025863ed86335d57dd640597577.tar.gz |
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/cgraphunit.c')
-rw-r--r-- | gcc/cgraphunit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 2cbed673212..7aee8d62814 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -2019,7 +2019,7 @@ ipa_passes (void) cgraph_process_new_functions (); execute_ipa_summary_passes - ((struct ipa_opt_pass_d *) passes->all_regular_ipa_passes); + ((ipa_opt_pass_d *) passes->all_regular_ipa_passes); } /* Some targets need to handle LTO assembler output specially. */ |