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-defconfig in repository toolchain/ci/gcc.
from 9d1cdb749a1 PR inline-asm/52813 revisited adds 24c4343f184 * g++.dg/ext/utf-cvt-char8_t.C: Pass -fsigned-char. adds 68597c49c64 PR c++/88866 * g++.dg/cpp0x/variadic126.C: Tweak dg-error. adds 8f56373387d 2019-01-15 Paul Thomas pault@gcc.gnu.org adds ef1b2a9867d 2019-01-15 Steven G. Kargl kargl@gcc.gnu.org adds 12bbaa89a85 compiler, runtime: panic on uncomparable map key, even [...] adds 0b953692632 2019-01-15 Thomas Koenig tkoenig@gcc.gnu.org adds a96be85278e 2019-01-15 Thomas Koenig tkoenig@gcc.gnu.org adds 1f4720bafea [D] Move building of typeof(null) values to a common function. adds 85bfd1290fd runtime: add padding to FFI type of struct ending with [...] adds 727d210bf24 Fix ICE on class-template argument deduction (PR c++/88795) adds cb94628769b gcc/: * godump.c (go_output_typedef): When outputti [...] adds 0ca47588bd2 Daily bump. adds de62156b618 Add myself adds 0f535bb05c8 [libbacktrace] Unify function name preference handling adds af93b844576 PR libstdc++/88738 treat shared_ptr and unique_ptr more lik [...] adds 45fb810dd92 Add self to maintainers list. adds 86a3ecf2148 Extend locations where to seach for Fortran pre-include. adds 2c099ba4fa7 Fix Arm big-endian regressions. new c84c150f652 PR c/51628 PR target/88682 * c-c++-common/pr51628-10.c ( [...] new 8a4481bea34 __builtin_<add/sub>_overflow issues on AArch64 (redux) new a24d9a6abd0 __builtin_<add/sub>_overflow issues on AArch64 (redux) (cont) new dfa1bf2cb1b * config/alpha/alpha.c (alpha_gimplify_va_arg): Handle sp [...] new 9fc2172cd24 PR c++/78244 - narrowing conversion in template not detect [...] new b92cc3ed88c /cp 2019-01-16 Paolo Carlini paolo.carlini@oracle.com
The 6 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: ChangeLog | 8 ++ MAINTAINERS | 2 + gcc/ChangeLog | 63 ++++++++++ gcc/DATESTAMP | 2 +- gcc/Makefile.in | 4 +- gcc/config/aarch64/aarch64-modes.def | 15 ++- gcc/config/aarch64/aarch64.c | 68 +++++++---- gcc/config/aarch64/aarch64.md | 130 ++++++++------------- gcc/config/aarch64/predicates.md | 26 ++++- gcc/config/alpha/alpha.c | 34 +++++- gcc/config/arm/arm-protos.h | 2 +- gcc/config/arm/arm.c | 7 +- gcc/config/arm/neon.md | 6 +- gcc/config/gnu-user.h | 2 +- gcc/cp/ChangeLog | 19 +++ gcc/cp/call.c | 2 + gcc/cp/cp-tree.h | 6 + gcc/cp/decl.c | 21 ++-- gcc/cp/pt.c | 4 + gcc/d/ChangeLog | 7 ++ gcc/d/d-codegen.cc | 36 ++++++ gcc/d/d-convert.cc | 16 +-- gcc/d/d-tree.h | 1 + gcc/d/expr.cc | 28 +---- gcc/fortran/ChangeLog | 20 ++++ gcc/fortran/resolve.c | 30 ++++- gcc/fortran/trans-expr.c | 11 +- gcc/gcc.c | 103 ++++++++++++---- gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/types.cc | 62 ++++++---- gcc/go/gofrontend/types.h | 22 ++++ gcc/godump.c | 2 +- gcc/testsuite/ChangeLog | 52 +++++++++ gcc/testsuite/c-c++-common/pr51628-10.c | 2 +- gcc/testsuite/g++.dg/cpp0x/Wnarrowing13.C | 8 ++ gcc/testsuite/g++.dg/cpp0x/Wnarrowing14.C | 17 +++ gcc/testsuite/g++.dg/cpp0x/variadic126.C | 4 +- gcc/testsuite/g++.dg/ext/utf-cvt-char8_t.C | 2 +- gcc/testsuite/g++.dg/other/pr33558-2.C | 2 +- gcc/testsuite/g++.dg/other/pr33558.C | 2 +- gcc/testsuite/g++.dg/parse/crash4.C | 2 +- gcc/testsuite/g++.dg/template/pr88795.C | 23 ++++ gcc/testsuite/g++.old-deja/g++.brendan/err-msg11.C | 2 +- gcc/testsuite/g++.old-deja/g++.mike/p7635.C | 2 +- gcc/testsuite/g++.old-deja/g++.other/decl6.C | 12 +- gcc/testsuite/gcc.misc-tests/godump-1.c | 5 + gcc/testsuite/gfortran.dg/ISO_Fortran_binding_1.c | 2 +- .../gfortran.dg/actual_array_substr_3.f90 | 11 ++ gcc/testsuite/gfortran.dg/pr81849.f90 | 16 +++ gcc/tree.c | 2 + libbacktrace/ChangeLog | 8 ++ libbacktrace/dwarf.c | 33 ++++-- libgo/go/reflect/type.go | 58 ++++++--- libgo/go/runtime/ffi.go | 10 ++ libgo/go/runtime/map.go | 73 +++++++----- libgo/go/runtime/type.go | 37 ++++-- libstdc++-v3/ChangeLog | 9 ++ libstdc++-v3/include/bits/c++config | 8 ++ libstdc++-v3/include/bits/shared_ptr.h | 36 +++--- libstdc++-v3/include/bits/unique_ptr.h | 36 +++--- 60 files changed, 892 insertions(+), 343 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/Wnarrowing13.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/Wnarrowing14.C create mode 100644 gcc/testsuite/g++.dg/template/pr88795.C create mode 100644 gcc/testsuite/gfortran.dg/actual_array_substr_3.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr81849.f90