diff options
author | Martin Jambor <mjambor@suse.cz> | 2009-11-10 15:43:20 +0100 |
---|---|---|
committer | Martin Jambor <jamborm@gcc.gnu.org> | 2009-11-10 15:43:20 +0100 |
commit | 2c5721d9f36a114809e296686ff39b1324b0cc5b (patch) | |
tree | 6cb5567aec53c0584fb5b316226815f21f6ec6b1 /gcc/ipa-reference.c | |
parent | c587836d9d5d1c1ec9182becd91268e0249d8f26 (diff) | |
download | gcc-2c5721d9f36a114809e296686ff39b1324b0cc5b.tar.gz |
tree-pass.h (struct ipa_opt_pass_d): Added stmt_fixup field.
2009-11-10 Martin Jambor <mjambor@suse.cz>
* tree-pass.h (struct ipa_opt_pass_d): Added stmt_fixup field.
(execute_all_ipa_stmt_fixups): Declare.
* ipa-cp.c (pass_ipa_cp): Added stmt_fixup value.
* ipa-inline.c (pass_ipa_inline): Likewise.
* ipa-pure-const.c (pass_ipa_pure_cons): Likewise.
* ipa-reference.c (pass_ipa_reference): Likewise.
* ipa.c (pass_ipa_whole_program_visibility): Likewise.
* lto-streamer-out.c (pass_ipa_lto_gimple_out): Likewise.
(pass_ipa_lto_finish_out): Likewise.
* lto-wpa-fixup.c (pass_ipa_lto_wpa_fixup): Likewise.
* passes.c (execute_ipa_stmt_fixups): New function.
(execute_all_ipa_stmt_fixups): New function.
* lto-streamer-in.c (input_function): Call execute_all_ipa_stmt_fixups.
From-SVN: r154064
Diffstat (limited to 'gcc/ipa-reference.c')
-rw-r--r-- | gcc/ipa-reference.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/ipa-reference.c b/gcc/ipa-reference.c index 8610f13311f..074aea6655e 100644 --- a/gcc/ipa-reference.c +++ b/gcc/ipa-reference.c @@ -1511,6 +1511,7 @@ struct ipa_opt_pass_d pass_ipa_reference = ipa_reference_write_summary, /* write_summary */ ipa_reference_read_summary, /* read_summary */ NULL, /* function_read_summary */ + NULL, /* stmt_fixup */ 0, /* TODOs */ NULL, /* function_transform */ NULL /* variable_transform */ |