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-allmodconfig in repository toolchain/ci/gcc.
from c434f6f1850 Allow conversions in X/[ex]4 < Y/[ex]4 adds 9a75566e139 2019-06-09 Edward Smith-Rowland 3dw4rd@verizon.net adds 4034da6cb1e PR target/90811 * config/nvptx/nvptx.c (nvptx_output_soft [...] adds 250f66e8534 Do not enable -mpcrel by default at the current time adds 3fcffbe4ca8 Darwin, testsuite - Fix PR 65364 (uninit-19.c). adds be63b32a65f * MAINTAINERS (Write After Approval): Add myself. adds d108f845e22 * config/mips/mips.c (mips_final_postscan_insn): Modify ca [...] adds a7e95895e31 removed extra .com, fixed e-mail. adds 5e910f42d78 Daily bump. adds 02a6d269a5b PR c/90760 * symtab.c (symtab_node::set_section): Allow b [...] adds 1a9652efb27 Remove wrong assert about single value profiler. adds b1a4ffbd1cd [arm] Implement usadv16qi and ssadv16qi standard names adds 39f01bff30f PR target/90811 * cfgexpand.c (align_local_variable): Add [...] adds 7809986b866 Remove value_range_constant_singleton in favor of value_ran [...] adds 163a5418c8c Disable hash-table sanitization for mem stats maps. new 00f08bc3d9b Replace std::to_string for integers with optimized version new 7445abf1ee5 Simplify std::scoped_lock destructor new 387a4a81a22 Improve static_assert messages for std::variant new 2461f833466 [nvptx] Assert fork has at most one join in nvptx_find_par
The 4 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 | 4 + MAINTAINERS | 1 + gcc/ChangeLog | 75 ++++++++++ gcc/DATESTAMP | 2 +- gcc/cfgexpand.c | 19 ++- gcc/config/arm/iterators.md | 3 + gcc/config/arm/neon.md | 26 ++++ gcc/config/arm/unspecs.md | 2 + gcc/config/mips/mips.c | 16 +- gcc/config/nvptx/nvptx.c | 3 +- gcc/config/rs6000/rs6000-cpus.def | 4 +- gcc/config/rs6000/rs6000.c | 19 ++- gcc/ggc-common.c | 2 +- gcc/gimple-ssa-evrp.c | 10 +- gcc/hash-map.h | 9 +- gcc/mem-stats.h | 6 +- gcc/symtab.c | 2 +- gcc/testsuite/ChangeLog | 30 ++++ gcc/testsuite/gcc.dg/pr90760.c | 8 + gcc/testsuite/gcc.dg/uninit-19.c | 4 +- gcc/testsuite/gcc.target/arm/ssadv16qi.c | 29 ++++ gcc/testsuite/gcc.target/arm/usadv16qi.c | 29 ++++ .../gcc.target/mips/data-sym-multi-pool.c | 45 ++++++ gcc/testsuite/gcc.target/mips/data-sym-pool.c | 5 +- gcc/testsuite/gcc.target/powerpc/localentry-1.c | 7 +- .../gcc.target/powerpc/localentry-detect-1.c | 6 +- gcc/testsuite/gcc.target/powerpc/notoc-direct-1.c | 7 +- gcc/testsuite/gcc.target/powerpc/pcrel-sibcall-1.c | 11 +- gcc/tree-vrp.c | 15 -- gcc/tree-vrp.h | 1 - gcc/value-prof.c | 2 +- gcc/vr-values.c | 5 +- libgomp/ChangeLog | 5 + libgomp/testsuite/libgomp.c/pr90811.c | 29 ++++ libstdc++-v3/ChangeLog | 40 +++++ libstdc++-v3/include/Makefile.am | 1 + libstdc++-v3/include/Makefile.in | 1 + libstdc++-v3/include/bits/basic_string.h | 64 +++++--- libstdc++-v3/include/bits/charconv.h | 106 +++++++++++++ libstdc++-v3/include/std/charconv | 75 +++------- libstdc++-v3/include/std/mutex | 6 +- libstdc++-v3/include/std/variant | 34 ++--- libstdc++-v3/include/std/version | 1 + .../numeric_conversions/char/to_string.cc | 4 +- .../numeric_conversions/char/to_string_int.cc | 164 +++++++++++++++++++++ .../requirements/constexpr_iter.cc | 6 +- .../array/requirements/constexpr_iter.cc | 6 +- 47 files changed, 780 insertions(+), 169 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/pr90760.c create mode 100644 gcc/testsuite/gcc.target/arm/ssadv16qi.c create mode 100644 gcc/testsuite/gcc.target/arm/usadv16qi.c create mode 100644 gcc/testsuite/gcc.target/mips/data-sym-multi-pool.c create mode 100644 libgomp/testsuite/libgomp.c/pr90811.c create mode 100644 libstdc++-v3/include/bits/charconv.h create mode 100644 libstdc++-v3/testsuite/21_strings/basic_string/numeric_conversi [...]