This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from e1eca9a8f58 Ada: Fix ICE when comparing reduction expression with integ [...] new c8ddca48512 gengtype: Avoid Werror bootstrap fail when a subclass has n [...] new 14ee9a2b41b cgraph: cgraph_indirect_call_info into a class hierachy new 7b3af2bfa1d ipa-devirt: Add speculative direct calls based on stores to [...]
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/cgraph.cc | 145 +++--- gcc/cgraph.h | 202 ++++++- gcc/cgraphclones.cc | 17 +- gcc/cgraphunit.cc | 3 +- gcc/common.opt | 4 + gcc/doc/invoke.texi | 13 +- gcc/gengtype.cc | 1 + gcc/ipa-cp.cc | 98 ++-- gcc/ipa-devirt.cc | 215 +++++--- gcc/ipa-inline.cc | 2 +- gcc/ipa-profile.cc | 2 +- gcc/ipa-prop.cc | 722 +++++++++++++++++++------- gcc/ipa-prop.h | 5 + gcc/ipa-utils.h | 23 +- gcc/ipa.cc | 2 +- gcc/lto-cgraph.cc | 24 +- gcc/opts.cc | 9 +- gcc/testsuite/gcc.dg/lto/fnptr-from-rec-1_0.c | 41 ++ gcc/testsuite/gcc.dg/lto/fnptr-from-rec-1_1.c | 19 + gcc/testsuite/gcc.dg/lto/fnptr-from-rec-2_0.c | 43 ++ gcc/testsuite/gcc.dg/lto/fnptr-from-rec-2_1.c | 22 + gcc/testsuite/gcc.dg/lto/fnptr-from-rec-3_0.c | 43 ++ gcc/testsuite/gcc.dg/lto/fnptr-from-rec-3_1.c | 19 + gcc/trans-mem.cc | 10 +- 24 files changed, 1247 insertions(+), 437 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/lto/fnptr-from-rec-1_0.c create mode 100644 gcc/testsuite/gcc.dg/lto/fnptr-from-rec-1_1.c create mode 100644 gcc/testsuite/gcc.dg/lto/fnptr-from-rec-2_0.c create mode 100644 gcc/testsuite/gcc.dg/lto/fnptr-from-rec-2_1.c create mode 100644 gcc/testsuite/gcc.dg/lto/fnptr-from-rec-3_0.c create mode 100644 gcc/testsuite/gcc.dg/lto/fnptr-from-rec-3_1.c