diff options
author | jamborm <jamborm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-09-06 14:46:55 +0000 |
---|---|---|
committer | jamborm <jamborm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-09-06 14:46:55 +0000 |
commit | c8d92fc149064d33a7f7d30c11bdba33792d70d2 (patch) | |
tree | 60c8adebdd85ef74f46a1d6e5721b6e999184d27 /gcc/ChangeLog | |
parent | 77d62cb7843c57618c1a8ba320d6fb96479c798d (diff) | |
download | gcc-c8d92fc149064d33a7f7d30c11bdba33792d70d2.tar.gz |
2011-09-06 Martin Jambor <mjambor@suse.cz>
* ipa-inline.h (struct inline_summary): Move versionable flag...
* cgraph.h (struct cgraph_local_info): ...here
* ipa-cp.c (determine_versionability): Use the new versionable flag.
(determine_versionability): Likewise.
(ipcp_versionable_function_p): Likewise.
(ipcp_generate_summary): Likewise.
* ipa-inline-analysis.c (dump_inline_summary): Do not dump the
versionable flag.
(compute_inline_parameters): Do not clear the versionable flag.
(inline_read_section): Do not stream the versionable flag.
(inline_write_summary): Likewise.
* lto-cgraph.c (lto_output_node): Stream the versionable flag.
(input_overwrite_node): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@178598 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ChangeLog')
-rw-r--r-- | gcc/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3109216d5e3..65d81138d4b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,19 @@ +2011-09-06 Martin Jambor <mjambor@suse.cz> + + * ipa-inline.h (struct inline_summary): Move versionable flag... + * cgraph.h (struct cgraph_local_info): ...here + * ipa-cp.c (determine_versionability): Use the new versionable flag. + (determine_versionability): Likewise. + (ipcp_versionable_function_p): Likewise. + (ipcp_generate_summary): Likewise. + * ipa-inline-analysis.c (dump_inline_summary): Do not dump the + versionable flag. + (compute_inline_parameters): Do not clear the versionable flag. + (inline_read_section): Do not stream the versionable flag. + (inline_write_summary): Likewise. + * lto-cgraph.c (lto_output_node): Stream the versionable flag. + (input_overwrite_node): Likewise. + 2011-09-06 Richard Guenther <rguenther@suse.de> PR tree-optimization/48149 |