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 707aa069296 PR c++/92070 - bogus error with -fchecking=2. adds 488ec13ac9a Support decimal floating-point constants in C2x. adds 0c49af88327 Daily bump. adds 474da2e9b99 compiler: mangle dots in pkgpath adds 2fa15104721 c-family/ * c-common.h (c_omp_mark_declare_variant, c_omp [...] adds 72766e3479d PR middle-end/92063 * tree-eh.c (operation_could_trap_hel [...] adds 46e5cce53ec PR ada/91995 * sem_ch8.adb (Chain_Use_Clause): Remove sec [...] adds 2cd5e9d5a67 * gcc/config/pa/pa.c (pa_option_override): Remove trailing [...] adds a5a45ca50e1 The inline keyword is supported in all new C standards adds 886d119acb6 Fix the ChangeLog for my previous commit adds 9b38282bb77 [Darwin] Suppress emitting empty ctor/dtor sections. adds 299fbddaad6 [Darwin, machopic 5/n] Make machopic_finish() static. adds 17f9eb2168a * config/pa/lib2funcs.S (__gcc_plt_call): Load branch targ [...] adds 6b3deec0b46 [Darwin, machopic 6/n] Fix for 67183 new 8f1c9764f20 * config/pa/pa.c (pa_output_call): Load descriptor address [...]
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 | 62 ++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 11 + gcc/ada/sem_ch8.adb | 6 +- gcc/ada/sem_elab.adb | 16 +- gcc/ada/sem_util.adb | 43 +-- gcc/ada/sem_util.ads | 21 +- gcc/c-family/ChangeLog | 18 ++ gcc/c-family/c-attribs.c | 6 +- gcc/c-family/c-common.h | 2 + gcc/c-family/c-omp.c | 333 ++++++++++++++++++++- gcc/c-family/c.opt | 2 +- gcc/c/ChangeLog | 9 + gcc/c/c-parser.c | 24 +- gcc/config/darwin-protos.h | 2 - gcc/config/darwin.c | 239 +++++++++------ gcc/config/pa/pa.c | 165 +++++----- gcc/config/pa/pa.h | 2 +- gcc/cp/ChangeLog | 7 + gcc/cp/parser.c | 13 +- gcc/doc/extend.texi | 2 +- gcc/fold-const.c | 3 +- gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/go-encode-id.cc | 13 + gcc/go/gofrontend/go-encode-id.h | 8 + gcc/go/gofrontend/gogo.cc | 5 +- gcc/testsuite/ChangeLog | 20 ++ .../c-c++-common/gomp/declare-variant-2.c | 33 +- .../c-c++-common/gomp/declare-variant-4.c | 22 ++ .../c-c++-common/gomp/declare-variant-5.c | 36 +++ .../c-c++-common/gomp/declare-variant-6.c | 35 +++ .../c-c++-common/gomp/declare-variant-7.c | 33 ++ gcc/testsuite/gcc.c-torture/compile/pr92063.c | 7 + gcc/testsuite/gcc.dg/dfp/c11-constants-1.c | 13 + gcc/testsuite/gcc.dg/dfp/c11-constants-2.c | 13 + gcc/testsuite/gcc.dg/dfp/c2x-constants-1.c | 13 + gcc/testsuite/gcc.dg/dfp/c2x-constants-2.c | 13 + gcc/testsuite/gcc.dg/dfp/constants-pedantic.c | 14 +- gcc/tree-eh.c | 15 +- gcc/tree-ssa-sccvn.c | 11 +- libcpp/ChangeLog | 15 + libcpp/expr.c | 17 +- libcpp/include/cpplib.h | 7 + libcpp/init.c | 49 +-- libgcc/ChangeLog | 9 + libgcc/config/pa/lib2funcs.S | 12 +- libgcc/config/pa/milli64.S | 23 +- 47 files changed, 1102 insertions(+), 324 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/declare-variant-4.c create mode 100644 gcc/testsuite/c-c++-common/gomp/declare-variant-5.c create mode 100644 gcc/testsuite/c-c++-common/gomp/declare-variant-6.c create mode 100644 gcc/testsuite/c-c++-common/gomp/declare-variant-7.c create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr92063.c create mode 100644 gcc/testsuite/gcc.dg/dfp/c11-constants-1.c create mode 100644 gcc/testsuite/gcc.dg/dfp/c11-constants-2.c create mode 100644 gcc/testsuite/gcc.dg/dfp/c2x-constants-1.c create mode 100644 gcc/testsuite/gcc.dg/dfp/c2x-constants-2.c