This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-stable-allmodconfig in repository toolchain/ci/gcc.
from bd74b8b76ea Do not look at _data component in gfc_dep_resolver. adds d36ab561d07 * cgraph.c (cgraph_node::dump): Dump unit_id and merged_ex [...] adds bb3c9a3bb5d [C] Add a target hook that allows targets to verify type usage adds 4ded402a10c 2019-11-30 Jan Hubicka hubicka@ucw.cz adds e0f2cde1550 Update max_bb_count in execute_fixup_cfg adds bddfda838ef * ipa-inline.c (compute_max_insns): Return int64_t. (inli [...] adds 8b8f4162103 Daily bump. new bd8de6c2181 * profile-count.h (profile_count::operator<): Use IPA valu [...]
The 1 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/ChangeLog | 77 ++++++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 13 ++ gcc/c-family/c-attribs.c | 59 ++++++ gcc/c-family/c-common.c | 15 +- gcc/c/ChangeLog | 14 ++ gcc/c/c-decl.c | 29 ++- gcc/c/c-typeck.c | 8 + gcc/cgraph.c | 5 + gcc/cgraph.h | 11 +- gcc/cgraphclones.c | 9 + gcc/cgraphunit.c | 92 ++++++++- gcc/config/aarch64/aarch64-protos.h | 3 + gcc/config/aarch64/aarch64-sve-builtins.cc | 49 +++++ gcc/config/aarch64/aarch64.c | 12 ++ gcc/config/elfos.h | 11 ++ gcc/doc/extend.texi | 35 ++++ gcc/doc/tm.texi | 13 ++ gcc/doc/tm.texi.in | 2 + gcc/ipa-fnsummary.c | 3 + gcc/ipa-fnsummary.h | 17 ++ gcc/ipa-inline-analysis.c | 4 +- gcc/ipa-inline.c | 10 +- gcc/lto-cgraph.c | 13 ++ gcc/lto-streamer.h | 2 + gcc/lto/lto-symtab.c | 7 + gcc/output.h | 1 + gcc/predict.c | 2 +- gcc/profile-count.h | 8 +- gcc/symtab.c | 18 +- gcc/target.def | 16 ++ gcc/target.h | 29 +++ gcc/testsuite/ChangeLog | 11 ++ gcc/testsuite/g++.dg/lto/inline-crossmodule-1.h | 15 ++ gcc/testsuite/g++.dg/lto/inline-crossmodule-1_0.C | 11 ++ gcc/testsuite/g++.dg/lto/inline-crossmodule-1_1.C | 8 + .../aarch64/sve/acle/general-c/sizeless-1.c | 217 +++++++++++++++++++++ .../aarch64/sve/acle/general-c/sizeless-2.c | 217 +++++++++++++++++++++ gcc/tree-cfg.c | 6 +- gcc/tree.c | 15 ++ gcc/varasm.c | 17 ++ gcc/varpool.c | 5 +- 42 files changed, 1088 insertions(+), 23 deletions(-) create mode 100644 gcc/testsuite/g++.dg/lto/inline-crossmodule-1.h create mode 100644 gcc/testsuite/g++.dg/lto/inline-crossmodule-1_0.C create mode 100644 gcc/testsuite/g++.dg/lto/inline-crossmodule-1_1.C create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/acle/general-c/sizeless-1.c create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/acle/general-c/sizeless-2.c