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-lts-defconfig in repository toolchain/ci/gcc.
from 9d3f24adb6d PR c++/88337 - Implement P1327R1: Allow dynamic_cast in co [...] adds a5042f3d986 PR c++/92745 * g++.dg/cpp0x/initlist118.C: Add -Wno-psabi [...] adds 27930c060ec Daily bump. adds c913774742e Catch division by zero errors in array sizes. adds 4af36fdd79e Remove KIND argument from INDEX so it does not mess up scal [...] adds 08edd2515e5 2019-12-30 Thomas Koenig tkoenig@gcc.gnu.org adds f6926fe5580 2019-12-30 Thomas Koenig tkoenig@gcc.gnu.org adds 7c23961a159 /gcc/cp 2019-12-30 Paolo Carlini paolo.carlini@oracle.com adds eaa18cd42c4 Remove assert in reshape_init_r. adds 9f40a2fccb6 Fix builtin functions needlessly using VIEW_CONVERT_EXPRs o [...] new 43dd84f2c71 PR libgomp/93066 * inclhack.def (hpux_c99_inttypes3): Fix [...] new 91c08cedf7f Fix typo in macro name guarding conditional in vxcrtstuff.c new 09261b9be2f Fix macro reference in gthr-vxworks-tls.c new 8ba90d1382a Improve VxWorks GTHREAD_ONCE_INIT new bdc7738bb12 Improve recursion protection for VxWorks limits.h new 52a91c9b12b Define STARTFILE_PREFIX_SPEC for powerpc VxWorks < 7 new f072cb86e3b Identify sections in vx-common.h new 12579d96252 Refine definitions for wchar_t/wint_t on VxWorks new 489a291637f Setup TARGET_C_PREINCLUDE for VxWorks new 600a680fb87 Simplify the compilation commands for config/vxworks.c new c32bc16cc56 Introduce an internal API for VxWorks version checks new 137897f3ada Setup system header wrappers for C++ on VxWorks new f32f801247c Add missing file expected with rev 279781 new 81312f86812 Add missing file expected with rev 279783 new d98b8959618 Add missing files expected with rev 279784
The 15 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: fixincludes/ChangeLog | 8 + fixincludes/fixincl.x | 65 ++- fixincludes/inclhack.def | 26 + fixincludes/tests/base/inttypes.h | 17 + gcc/ChangeLog | 161 +++++++ gcc/DATESTAMP | 2 +- gcc/config.gcc | 27 +- gcc/config/rs6000/rs6000-builtin.def | 88 +++- gcc/config/rs6000/rs6000-call.c | 523 ++++++++++++--------- gcc/config/rs6000/vxworks.h | 7 + gcc/config/t-vxworks | 43 +- gcc/config/vx-common.h | 47 +- gcc/config/vxworks/_vxworks-versions.h | 54 +++ gcc/config/vxworks/_yvals-wrapper.h | 44 ++ gcc/config/vxworks/_yvals.h | 45 ++ gcc/config/vxworks/complex.h | 28 ++ gcc/config/vxworks/inttypes.h | 28 ++ gcc/config/vxworks/math.h | 28 ++ gcc/config/vxworks/setjmp.h | 34 ++ gcc/config/vxworks/vxworks-predef.h | 32 ++ gcc/cp/ChangeLog | 20 + gcc/cp/cp-tree.h | 7 +- gcc/cp/decl.c | 3 +- gcc/cp/decl2.c | 22 +- gcc/cp/init.c | 101 ++-- gcc/cp/parser.c | 3 +- gcc/cp/pt.c | 2 +- gcc/fortran/ChangeLog | 24 + gcc/fortran/arith.c | 6 + gcc/fortran/decl.c | 31 +- gcc/fortran/gfortran.h | 2 + gcc/fortran/intrinsic.c | 48 +- gcc/fortran/intrinsic.h | 3 +- gcc/fortran/iresolve.c | 25 +- gcc/fortran/trans-decl.c | 24 +- gcc/testsuite/ChangeLog | 34 ++ gcc/testsuite/g++.dg/cpp0x/initlist118.C | 1 + gcc/testsuite/g++.dg/init/delete1.C | 6 +- gcc/testsuite/g++.dg/ipa/pr85607.C | 8 +- gcc/testsuite/g++.dg/warn/Wdelete-incomplete-1.C | 7 +- .../g++.dg/warn/delete-non-virtual-dtor.C | 10 +- gcc/testsuite/g++.dg/warn/incomplete1.C | 8 +- gcc/testsuite/gcc.target/powerpc/pr92923-1.c | 453 ++++++++++++++++++ gcc/testsuite/gcc.target/powerpc/pr92923-2.c | 285 +++++++++++ gcc/testsuite/gfortran.dg/arith_divide_2.f90 | 9 + gcc/testsuite/gfortran.dg/index_3.f90 | 8 + libcc1/ChangeLog | 5 + libcc1/libcp1plugin.cc | 3 +- libgcc/ChangeLog | 20 + libgcc/config/gthr-vxworks-tls.c | 12 +- libgcc/config/gthr-vxworks.h | 14 +- libgcc/config/vxcrtstuff.c | 4 +- 52 files changed, 2149 insertions(+), 366 deletions(-) create mode 100644 gcc/config/vxworks/_vxworks-versions.h create mode 100644 gcc/config/vxworks/_yvals-wrapper.h create mode 100644 gcc/config/vxworks/_yvals.h create mode 100644 gcc/config/vxworks/complex.h create mode 100644 gcc/config/vxworks/inttypes.h create mode 100644 gcc/config/vxworks/math.h create mode 100644 gcc/config/vxworks/setjmp.h create mode 100644 gcc/config/vxworks/vxworks-predef.h create mode 100644 gcc/testsuite/gcc.target/powerpc/pr92923-1.c create mode 100644 gcc/testsuite/gcc.target/powerpc/pr92923-2.c create mode 100644 gcc/testsuite/gfortran.dg/arith_divide_2.f90 create mode 100644 gcc/testsuite/gfortran.dg/index_3.f90