This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 9ed117789d0 Update C++17 library status tables new a25ad23098b libphobos: Fix linker warning and SEGV in core.thread tests.
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: libphobos/ChangeLog | 19 + libphobos/configure | 108 +++- libphobos/configure.ac | 1 + libphobos/libdruntime/Makefile.am | 73 ++- libphobos/libdruntime/Makefile.in | 213 +++++-- .../libdruntime/config/aarch64/switchcontext.S | 103 ++++ libphobos/libdruntime/config/arm/switchcontext.S | 118 ++++ .../{gcc/drtstuff.c => config/common/threadasm.S} | 30 +- libphobos/libdruntime/config/mingw/switchcontext.S | 109 ++++ libphobos/libdruntime/config/mips/switchcontext.S | 102 +++ .../libdruntime/config/powerpc/switchcontext.S | 150 +++++ .../libdruntime/config/powerpc64/callwithstack.S | 168 +++++ libphobos/libdruntime/config/x86/switchcontext.S | 96 +++ libphobos/libdruntime/core/threadasm.S | 682 --------------------- libphobos/m4/druntime/cpu.m4 | 38 ++ 15 files changed, 1230 insertions(+), 780 deletions(-) create mode 100644 libphobos/libdruntime/config/aarch64/switchcontext.S create mode 100644 libphobos/libdruntime/config/arm/switchcontext.S copy libphobos/libdruntime/{gcc/drtstuff.c => config/common/threadasm.S} (55%) create mode 100644 libphobos/libdruntime/config/mingw/switchcontext.S create mode 100644 libphobos/libdruntime/config/mips/switchcontext.S create mode 100644 libphobos/libdruntime/config/powerpc/switchcontext.S create mode 100644 libphobos/libdruntime/config/powerpc64/callwithstack.S create mode 100644 libphobos/libdruntime/config/x86/switchcontext.S delete mode 100644 libphobos/libdruntime/core/threadasm.S