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/gcc.
from c118d459492 2018-11-23 Richard Biener rguenther@suse.de adds fb75ff455a7 PR libstdc++/87308 adjust regex used in std::any pretty printer adds 85e3666c57e PR libstdc++/65229 fix pretty printer for std::bitset<0> adds 2b649ea58f7 [aarch64/arm] Updating the cost table for xgene1. adds 299f7a4a356 [aarch64] Update xgene1_addrcost_table. adds efa47671f18 [aarch64] Add xgene1 prefetch tunings. adds 13427ab2cef [aarch64] Update xgene1 tuning struct. adds ab885a1ec2b [aarch64] Add CPU support for Ampere Computing's eMAG. adds 23df31a7c6b 2018-11-23 Edward Smith-Rowland 3dw4rd@verizon.net adds cf18b3e83b1 PR testsuite/88098 - FAIL: gcc.dg/Wbuiltin-declaration-mism [...] adds d32ab3dcc52 PR tree-optimization/87756 - missing unterminated argument [...] adds d4ac047bf12 Make recursion_check work for multiple threads adds 25f980e326d PR tree-optimization/87756 * gcc.dg/builtin-memchr-2.c: S [...] adds 15b8e5c8921 2018-11-23 Vladimir Makarov vmakarov@redhat.com adds 91132079de9 2018-11-23 Vladimir Makarov vmakarov@redhat.com adds 4e4a9df3ed2 Daily bump. adds be69e68ea21 PR rtl-optimization/87468 * tree-ssa-threadupdate.c (crea [...] adds ed9ed194d64 2018-11-24 Paul Thomas pault@gcc.gnu.org adds 10b40256e87 2018-11-24 Paul Thomas pault@gcc.gnu.org adds 63d054f3ae3 gcc/d/ChangeLog: adds 1c6acf3a488 Daily bump. adds 21fcb11bdcf 2018-11-25 Vladimir Makarov vmakarov@redhat.com
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 45 +++++ gcc/DATESTAMP | 2 +- gcc/c/ChangeLog | 6 + gcc/c/c-typeck.c | 9 +- gcc/config/aarch64/aarch64-cores.def | 5 + gcc/config/aarch64/aarch64-tune.md | 2 +- gcc/config/aarch64/aarch64.c | 44 +++- gcc/config/arm/aarch-cost-tables.h | 88 ++++---- gcc/d/ChangeLog | 6 + gcc/d/d-incpath.cc | 4 +- gcc/doc/invoke.texi | 2 +- gcc/expr.c | 32 ++- gcc/fortran/ChangeLog | 6 + gcc/fortran/resolve.c | 2 +- gcc/ira-costs.c | 8 + gcc/testsuite/ChangeLog | 40 +++- gcc/testsuite/gcc.c-torture/compile/pr87468.c | 15 ++ .../gcc.dg/Wbuiltin-declaration-mismatch-4.c | 7 +- .../gcc.dg/Wbuiltin-declaration-mismatch-5.c | 19 ++ gcc/testsuite/gcc.dg/builtin-memchr-2.c | 55 +++++ gcc/testsuite/gcc.dg/builtin-memchr-3.c | 72 +++++++ gcc/testsuite/gcc.dg/torture/pr67222.c | 8 +- gcc/testsuite/gcc.dg/warn-sprintf-no-nul-2.c | 131 ++++++++++++ gcc/testsuite/gcc.target/powerpc/pr70669.c | 2 +- gcc/testsuite/gfortran.dg/associate_46.f90 | 37 ++++ gcc/tree-ssa-threadupdate.c | 12 +- gcc/tree.c | 25 ++- gcc/tree.h | 2 +- libgfortran/ChangeLog | 9 + libgfortran/runtime/error.c | 43 +++- libstdc++-v3/ChangeLog | 36 ++++ libstdc++-v3/include/std/complex | 224 ++++++++++----------- libstdc++-v3/python/libstdcxx/v6/printers.py | 15 +- .../comparison_operators/more_constexpr.cc} | 33 ++- .../complex/operators/more_constexpr.cc | 62 ++++++ .../complex/requirements/more_constexpr.cc | 171 ++++++++++++++++ .../{constexpr.cc => more_constexpr.cc} | 11 +- .../26_numerics/headers/complex/synopsis.cc | 90 +++++---- .../testsuite/libstdc++-prettyprinters/cxx17.cc | 3 + .../testsuite/libstdc++-prettyprinters/simple.cc | 4 + 40 files changed, 1131 insertions(+), 256 deletions(-) create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr87468.c create mode 100644 gcc/testsuite/gcc.dg/Wbuiltin-declaration-mismatch-5.c create mode 100644 gcc/testsuite/gcc.dg/builtin-memchr-2.c create mode 100644 gcc/testsuite/gcc.dg/builtin-memchr-3.c create mode 100644 gcc/testsuite/gcc.dg/warn-sprintf-no-nul-2.c create mode 100644 gcc/testsuite/gfortran.dg/associate_46.f90 copy libstdc++-v3/testsuite/{20_util/remove_cvref/requirements/explicit_instantiat [...] create mode 100644 libstdc++-v3/testsuite/26_numerics/complex/operators/more_constexpr.cc create mode 100644 libstdc++-v3/testsuite/26_numerics/complex/requirements/more_co [...] copy libstdc++-v3/testsuite/26_numerics/complex/value_operations/{constexpr.cc => [...]