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-aarch64-mainline-allnoconfig in repository toolchain/ci/gcc.
from 13a3d0959c8 Daily bump. adds f6a4bdd3969 2019-07-26 François Dumont fdumont@gcc.gnu.org adds 6d91ac76adb [PR 89330] Remove non-useful speculations from new_edges adds f3abf7fd679 Add rules to strip away unneeded type casts in expressions adds 3a3f0ab1c55 AArch64: Make processing less fragile in config.gcc adds 87e24519eb2 Define __cpp_lib_endian feature test macro adds f6b162257ff [Darwin, testsuite] Handle Darwin's size command. adds 9ba8be8ad4a Daily bump. adds 05551cfc830 [Darwin, PPC, testsuite] Fix fail for bmi2-bzhi64-1a.c adds 12b43fabe5f Daily bump. adds 870f4e6fbd2 * doc/include/gpl_v3.texi (Copying): Use https for www.gnu.org. adds fe6dc108d95 * doc/xml/manual/documentation_hacking.xml: Fix broken ref [...] adds dbc3890fdaa [RS6000] Make assembler command line cpu match default for gcc adds 6c3dd26bef7 [RS6000] PR91135, __linux__ not defined with -mcall-aixdesc [...] adds 77dc8b7f59d [RS6000] rs6000_output_mi_thunk tidy new e5ab189eaee Fix g++.dg/lto/pr89330 on Solaris
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 | 56 +++++++++ gcc/DATESTAMP | 2 +- gcc/config.gcc | 46 ++++--- gcc/config/aarch64/aarch64-option-extensions.def | 89 ++++++++++---- gcc/config/rs6000/default64.h | 4 + gcc/config/rs6000/eabialtivec.h | 3 + gcc/config/rs6000/freebsd64.h | 2 - gcc/config/rs6000/linux.h | 13 -- gcc/config/rs6000/linux64.h | 20 +-- gcc/config/rs6000/linuxaltivec.h | 3 + gcc/config/rs6000/rs6000-call.c | 15 +-- gcc/config/rs6000/rs6000.h | 3 +- gcc/config/rs6000/rtems.h | 3 - gcc/config/rs6000/sysv4.h | 2 +- gcc/convert.c | 86 ------------- gcc/doc/include/gpl_v3.texi | 2 +- gcc/ipa-inline-transform.c | 42 ++++++- gcc/ipa-inline.c | 12 +- gcc/match.pd | 134 ++++++++++++++++----- gcc/testsuite/ChangeLog | 24 ++++ gcc/testsuite/g++.dg/lto/pr89330_0.C | 51 ++++++++ gcc/testsuite/g++.dg/lto/pr89330_1.C | 36 ++++++ gcc/testsuite/g++.dg/tree-prof/devirt.C | 2 +- gcc/testsuite/gcc.dg/type-convert-var.c | 9 ++ gcc/testsuite/gcc.target/powerpc/bmi2-bzhi64-1a.c | 2 +- gcc/testsuite/lib/scanasm.exp | 12 +- libstdc++-v3/ChangeLog | 20 +++ .../doc/xml/manual/documentation_hacking.xml | 10 +- libstdc++-v3/include/std/bit | 2 + libstdc++-v3/include/std/version | 1 + libstdc++-v3/testsuite/26_numerics/endian/2.cc | 27 +++++ libstdc++-v3/testsuite/26_numerics/endian/3.cc | 27 +++++ libstdc++-v3/testsuite/26_numerics/endian/4.cc | 25 ++++ libstdc++-v3/testsuite/util/testsuite_iterators.h | 4 +- 34 files changed, 555 insertions(+), 234 deletions(-) create mode 100644 gcc/testsuite/g++.dg/lto/pr89330_0.C create mode 100644 gcc/testsuite/g++.dg/lto/pr89330_1.C create mode 100644 gcc/testsuite/gcc.dg/type-convert-var.c create mode 100644 libstdc++-v3/testsuite/26_numerics/endian/2.cc create mode 100644 libstdc++-v3/testsuite/26_numerics/endian/3.cc create mode 100644 libstdc++-v3/testsuite/26_numerics/endian/4.cc