This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from ccd56db8980 In 'gcc/omp-oacc-kernels-decompose.cc', use langhook instea [...] new 1d9a8675d37 c++: Predefine __STDCPP_THREADS__ in the compiler if thread [...] new 5cd4f8901ad testsuite: guality/redeclaration1.C test workaround new f3dc991fba0 Revert accidental commit new e400a64936e c: C2x binary constants new b8d36dcc917 libstdc++: Remove redundant overflow check for futex timeou [...] new 4d039cb9a1d libstdc++: Use custom timespec in system calls [PR 93421] new 77f67db2a47 Daily bump.
The 7 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 + gcc/ChangeLog | 447 +++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 52 +++ gcc/c-family/c-cppbuiltin.c | 7 + gcc/c/ChangeLog | 18 + gcc/cp/ChangeLog | 31 ++ gcc/d/ChangeLog | 15 + gcc/fortran/ChangeLog | 5 + gcc/objc/ChangeLog | 18 + gcc/testsuite/ChangeLog | 370 +++++++++++++++++ gcc/testsuite/g++.dg/guality/redeclaration1.C | 8 +- gcc/testsuite/gcc.dg/binary-constants-2.c | 4 +- gcc/testsuite/gcc.dg/binary-constants-3.c | 4 +- gcc/testsuite/gcc.dg/c11-binary-constants-1.c | 11 + gcc/testsuite/gcc.dg/c11-binary-constants-2.c | 11 + gcc/testsuite/gcc.dg/c2x-binary-constants-1.c | 5 + gcc/testsuite/gcc.dg/c2x-binary-constants-2.c | 11 + gcc/testsuite/gcc.dg/c2x-binary-constants-3.c | 9 + gcc/testsuite/gcc.dg/system-binary-constants-1.c | 2 +- gcc/tree-ssa-alias.c | 2 - libcpp/ChangeLog | 14 + libcpp/expr.c | 23 +- libcpp/init.c | 4 +- libgomp/ChangeLog | 24 ++ libiberty/ChangeLog | 32 ++ libphobos/ChangeLog | 5 + libsanitizer/ChangeLog | 4 + libstdc++-v3/ChangeLog | 47 +++ libstdc++-v3/src/c++11/chrono.cc | 17 +- libstdc++-v3/src/c++11/futex.cc | 49 ++- .../members/{wait_until_overflow.cc => 93456.cc} | 0 32 files changed, 1215 insertions(+), 40 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/c11-binary-constants-1.c create mode 100644 gcc/testsuite/gcc.dg/c11-binary-constants-2.c create mode 100644 gcc/testsuite/gcc.dg/c2x-binary-constants-1.c create mode 100644 gcc/testsuite/gcc.dg/c2x-binary-constants-2.c create mode 100644 gcc/testsuite/gcc.dg/c2x-binary-constants-3.c rename libstdc++-v3/testsuite/30_threads/future/members/{wait_until_overflow.cc => [...]