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/function.h | |
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/function.h')
-rw-r--r-- | gcc/function.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/function.h b/gcc/function.h index c00bfe2..fcbebc1 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -167,8 +167,8 @@ typedef struct temp_slot *temp_slot_p; struct call_site_record_d; struct dw_fde_struct; -struct ipa_opt_pass_d; -typedef struct ipa_opt_pass_d *ipa_opt_pass; +class ipa_opt_pass_d; +typedef ipa_opt_pass_d *ipa_opt_pass; struct GTY(()) varasm_status { |