This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 9b2915d95d8 aarch64: Optimise calls to ldexp with SVE FSCALE instructio [...] new eb45d151fa1 c: Implement C2Y N3298 - Introduce complex literals [PR117029] new 856809e582b c: Handle C23 floating constant {d,D}{32,64,128} suffixes l [...]
The 2 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/c-family/c-lex.cc | 7 ++- gcc/testsuite/gcc.dg/c23-imaginary-constants-1.c | 58 ++++++++++++++++++++ gcc/testsuite/gcc.dg/c23-imaginary-constants-10.c | 14 +++++ gcc/testsuite/gcc.dg/c23-imaginary-constants-2.c | 28 ++++++++++ gcc/testsuite/gcc.dg/c23-imaginary-constants-3.c | 64 ++++++++++++++++++++++ gcc/testsuite/gcc.dg/c23-imaginary-constants-4.c | 34 ++++++++++++ gcc/testsuite/gcc.dg/c23-imaginary-constants-5.c | 28 ++++++++++ gcc/testsuite/gcc.dg/c23-imaginary-constants-6.c | 14 +++++ gcc/testsuite/gcc.dg/c23-imaginary-constants-7.c | 28 ++++++++++ gcc/testsuite/gcc.dg/c23-imaginary-constants-8.c | 14 +++++ gcc/testsuite/gcc.dg/c23-imaginary-constants-9.c | 28 ++++++++++ gcc/testsuite/gcc.dg/c2y-imaginary-constants-1.c | 5 ++ gcc/testsuite/gcc.dg/c2y-imaginary-constants-10.c | 14 +++++ gcc/testsuite/gcc.dg/c2y-imaginary-constants-11.c | 58 ++++++++++++++++++++ gcc/testsuite/gcc.dg/c2y-imaginary-constants-12.c | 28 ++++++++++ gcc/testsuite/gcc.dg/c2y-imaginary-constants-2.c | 28 ++++++++++ gcc/testsuite/gcc.dg/c2y-imaginary-constants-3.c | 11 ++++ gcc/testsuite/gcc.dg/c2y-imaginary-constants-4.c | 34 ++++++++++++ gcc/testsuite/gcc.dg/c2y-imaginary-constants-5.c | 7 +++ gcc/testsuite/gcc.dg/c2y-imaginary-constants-6.c | 14 +++++ gcc/testsuite/gcc.dg/c2y-imaginary-constants-7.c | 7 +++ gcc/testsuite/gcc.dg/c2y-imaginary-constants-8.c | 14 +++++ gcc/testsuite/gcc.dg/c2y-imaginary-constants-9.c | 7 +++ gcc/testsuite/gcc.dg/cpp/pr7263-3.c | 2 +- gcc/testsuite/gcc.dg/dfp/c11-constants-3.c | 13 +++++ gcc/testsuite/gcc.dg/dfp/c11-constants-4.c | 13 +++++ gcc/testsuite/gcc.dg/dfp/c23-constants-3.c | 39 ++++++++++++++ gcc/testsuite/gcc.dg/dfp/c23-constants-4.c | 13 +++++ libcpp/expr.cc | 40 +++++++++++--- libcpp/include/cpplib.h | 3 ++ libcpp/init.cc | 66 ++++++++++++----------- 31 files changed, 693 insertions(+), 40 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/c23-imaginary-constants-1.c create mode 100644 gcc/testsuite/gcc.dg/c23-imaginary-constants-10.c create mode 100644 gcc/testsuite/gcc.dg/c23-imaginary-constants-2.c create mode 100644 gcc/testsuite/gcc.dg/c23-imaginary-constants-3.c create mode 100644 gcc/testsuite/gcc.dg/c23-imaginary-constants-4.c create mode 100644 gcc/testsuite/gcc.dg/c23-imaginary-constants-5.c create mode 100644 gcc/testsuite/gcc.dg/c23-imaginary-constants-6.c create mode 100644 gcc/testsuite/gcc.dg/c23-imaginary-constants-7.c create mode 100644 gcc/testsuite/gcc.dg/c23-imaginary-constants-8.c create mode 100644 gcc/testsuite/gcc.dg/c23-imaginary-constants-9.c create mode 100644 gcc/testsuite/gcc.dg/c2y-imaginary-constants-1.c create mode 100644 gcc/testsuite/gcc.dg/c2y-imaginary-constants-10.c create mode 100644 gcc/testsuite/gcc.dg/c2y-imaginary-constants-11.c create mode 100644 gcc/testsuite/gcc.dg/c2y-imaginary-constants-12.c create mode 100644 gcc/testsuite/gcc.dg/c2y-imaginary-constants-2.c create mode 100644 gcc/testsuite/gcc.dg/c2y-imaginary-constants-3.c create mode 100644 gcc/testsuite/gcc.dg/c2y-imaginary-constants-4.c create mode 100644 gcc/testsuite/gcc.dg/c2y-imaginary-constants-5.c create mode 100644 gcc/testsuite/gcc.dg/c2y-imaginary-constants-6.c create mode 100644 gcc/testsuite/gcc.dg/c2y-imaginary-constants-7.c create mode 100644 gcc/testsuite/gcc.dg/c2y-imaginary-constants-8.c create mode 100644 gcc/testsuite/gcc.dg/c2y-imaginary-constants-9.c create mode 100644 gcc/testsuite/gcc.dg/dfp/c11-constants-3.c create mode 100644 gcc/testsuite/gcc.dg/dfp/c11-constants-4.c create mode 100644 gcc/testsuite/gcc.dg/dfp/c23-constants-3.c create mode 100644 gcc/testsuite/gcc.dg/dfp/c23-constants-4.c