This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 3bffc4b37e8 arm: partial revert of r11-8168 [PR100067] new d86e60855f0 libphobos: Add section support code for OpenBSD (PR99691) new b66e72b43e1 libphobos: Add D runtime support code for MinGW (PR99794) new 6eae7549b8a libphobos: Add Thread/Fiber support code for Darwin (PR98058) new e19c6389966 libphobos: Merge upstream druntime 89f870b7, phobos e6907ff3e new dc7d1c74ffb d: Fix ICE in when formating a string with '%' or '`' chara [...]
The 5 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: gcc/d/d-diagnostic.cc | 64 ++++- gcc/testsuite/gdc.dg/pr98457.d | 9 + libphobos/configure | 26 +- libphobos/libdruntime/MERGE | 2 +- libphobos/libdruntime/Makefile.am | 29 +- libphobos/libdruntime/Makefile.in | 93 ++++--- libphobos/libdruntime/config/common/threadasm.S | 2 +- libphobos/libdruntime/config/mingw/msvc.c | 169 ++++++++++++ libphobos/libdruntime/config/mingw/switchcontext.S | 12 +- .../libdruntime/config/powerpc/switchcontext.S | 278 ++++++++++++++++++- libphobos/libdruntime/config/x86/switchcontext.S | 159 ++++++++++- libphobos/libdruntime/core/stdc/config.d | 39 ++- libphobos/libdruntime/core/stdc/math.d | 295 +++++++++++---------- libphobos/libdruntime/core/stdc/stdio.d | 82 +++++- libphobos/libdruntime/core/stdc/stdlib.d | 27 +- libphobos/libdruntime/core/stdc/tgmath.d | 7 + libphobos/libdruntime/core/sys/darwin/config.d | 53 ++++ .../libdruntime/core/sys/darwin/mach/thread_act.d | 66 +++++ .../libdruntime/core/sys/openbsd/sys/link_elf.d | 5 + libphobos/libdruntime/core/sys/posix/stdio.d | 50 ++++ libphobos/libdruntime/core/sys/windows/com.d | 4 +- libphobos/libdruntime/core/sys/windows/dbghelp.d | 2 +- libphobos/libdruntime/core/sys/windows/dll.d | 4 +- libphobos/libdruntime/core/sys/windows/threadaux.d | 4 +- libphobos/libdruntime/core/thread/fiber.d | 48 +++- libphobos/libdruntime/core/thread/osthread.d | 138 +++++++++- libphobos/libdruntime/core/thread/threadbase.d | 4 + libphobos/libdruntime/gcc/backtrace.d | 4 +- libphobos/libdruntime/gcc/deh.d | 7 +- libphobos/libdruntime/gcc/gthread.d | 6 +- libphobos/libdruntime/gcc/sections/elf.d | 54 ++-- libphobos/libdruntime/gcc/sections/package.d | 1 + libphobos/libdruntime/gcc/unwind/generic.d | 2 +- libphobos/libdruntime/rt/dmain2.d | 67 +---- libphobos/m4/druntime/libraries.m4 | 4 +- libphobos/m4/druntime/os.m4 | 22 +- libphobos/src/MERGE | 2 +- libphobos/src/std/process.d | 51 +++- .../testsuite/libphobos.thread/fiber_guard_page.d | 6 +- 39 files changed, 1515 insertions(+), 382 deletions(-) create mode 100644 gcc/testsuite/gdc.dg/pr98457.d create mode 100644 libphobos/libdruntime/config/mingw/msvc.c create mode 100644 libphobos/libdruntime/core/sys/darwin/config.d