This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-aarch64-bootstrap in repository toolchain/ci/gcc.
from a81f6092350 Fix glitch in entry for vxworks_posix_open adds deb9f18f677 Change kind of integer literal to fix a testcase. adds 1374d4b963a middle-end/101292 - invalid memory access with warning control adds 450c85b81f4 OpenMP: allow requires dynamic_allocators adds d3a57993359 diagnostic: avoid repeating include path adds aeca44768d5 c++: Fix cp_genericize_target_expr for TARGET_EXPRs created [...] adds 6cb61e50ade Enable -Wuninitialized + -ftrivial-auto-var-init for addres [...] adds cc3bf3404e4 libstdc++: Directly implement hexfloat std::from_chars for [...] adds 2800bc08e4a libstdc++: Import the fast_float library adds f5c8b82512f libstdc++: Apply modifications to our local copy of fast_float adds 40b0d4472a2 libstdc++: Adjust fast_float's over/underflow behavior for [...] adds 490e23032ba libstdc++: Use fast_float in std::from_chars for binary32/64
No new revisions were added by this update.
Summary of changes: gcc/c/c-parser.c | 2 +- gcc/cp/cp-gimplify.c | 9 +- gcc/cp/parser.c | 2 +- gcc/diagnostic-spec.c | 5 +- gcc/diagnostic.c | 36 +- gcc/diagnostic.h | 4 + gcc/fortran/openmp.c | 3 +- gcc/testsuite/c-c++-common/cpp/line-2.c | 2 +- gcc/testsuite/c-c++-common/cpp/line-3.c | 2 +- gcc/testsuite/g++.dg/cpp1y/pr104031.C | 23 + gcc/testsuite/gcc.dg/auto-init-uninit-16.c | 4 +- gcc/testsuite/gcc.dg/auto-init-uninit-34.c | 8 +- gcc/testsuite/gcc.dg/auto-init-uninit-37.c | 44 +- gcc/testsuite/gcc.dg/auto-init-uninit-B.c | 4 +- gcc/testsuite/gfortran.dg/gomp/allocate-2.f90 | 2 +- gcc/testsuite/gfortran.dg/gomp/requires-8.f90 | 2 +- gcc/tree-ssa-uninit.c | 141 +- gcc/warning-control.cc | 3 +- libstdc++-v3/src/c++17/fast_float/LOCAL_PATCHES | 2 + libstdc++-v3/src/c++17/fast_float/MERGE | 4 + libstdc++-v3/src/c++17/fast_float/README.md | 218 ++ libstdc++-v3/src/c++17/fast_float/fast_float.h | 2903 +++++++++++++++++++++++ libstdc++-v3/src/c++17/floating_from_chars.cc | 397 ++++ libstdc++-v3/testsuite/20_util/from_chars/7.cc | 152 ++ 24 files changed, 3899 insertions(+), 73 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp1y/pr104031.C create mode 100644 libstdc++-v3/src/c++17/fast_float/LOCAL_PATCHES create mode 100644 libstdc++-v3/src/c++17/fast_float/MERGE create mode 100644 libstdc++-v3/src/c++17/fast_float/README.md create mode 100644 libstdc++-v3/src/c++17/fast_float/fast_float.h create mode 100644 libstdc++-v3/testsuite/20_util/from_chars/7.cc