Daily bump.

This commit is contained in:
GCC Administrator 2022-01-10 00:16:20 +00:00
parent 49d73c9fb6
commit 3a5702df3f
4 changed files with 56 additions and 1 deletions

View File

@ -1 +1 @@
20220109
20220110

View File

@ -1,3 +1,24 @@
2022-01-09 Harald Anlauf <anlauf@gmx.de>
PR fortran/103777
* simplify.c (gfc_simplify_maskr): Check validity of argument 'I'
before simplifying.
(gfc_simplify_maskl): Likewise.
2022-01-09 Harald Anlauf <anlauf@gmx.de>
PR fortran/101762
* expr.c (gfc_check_pointer_assign): For pointer initialization
targets, check that subscripts and substring indices in
specifications are constant expressions.
2022-01-09 Mikael Morin <mikael@gcc.gnu.org>
PR fortran/103789
* trans-array.c (arg_evaluated_for_scalarization): Add MASKL, MASKR,
SCAN and VERIFY to the list of intrinsics whose KIND argument is to be
ignored.
2022-01-07 Sandra Loosemore <sandra@codesourcery.com>
PR fortran/103898

View File

@ -1,3 +1,32 @@
2022-01-09 Harald Anlauf <anlauf@gmx.de>
PR fortran/103777
* gfortran.dg/masklr_3.f90: New test.
2022-01-09 Harald Anlauf <anlauf@gmx.de>
PR fortran/101762
* gfortran.dg/pr101762.f90: New test.
2022-01-09 Mikael Morin <mikael@gcc.gnu.org>
PR fortran/103789
* gfortran.dg/maskl_1.f90: New test.
* gfortran.dg/maskr_1.f90: New test.
* gfortran.dg/scan_3.f90: New test.
* gfortran.dg/verify_3.f90: New test.
2022-01-09 Sandra Loosemore <sandra@codesourcery.com>
* g++.dg/cpp0x/constexpr-compare1.C: Add explicit
-fdelete-null-pointer-checks option.
* g++.dg/cpp0x/constexpr-compare2.C: Likewise.
* g++.dg/cpp0x/constexpr-typeid2.C: Likewise.
* g++.dg/cpp1y/constexpr-94716.C: Likewise.
* g++.dg/cpp1z/constexpr-compare1.C: Likewise.
* g++.dg/cpp1z/constexpr-if36.C: Likewise.
* gcc.dg/init-compare-1.c: Likewise.
2022-01-08 Roger Sayle <roger@nextmovesoftware.com>
* gcc.target/i386/sse2-v1ti-mov-1.c: New test case.

View File

@ -1,3 +1,8 @@
2022-01-09 Sandra Loosemore <sandra@codesourcery.com>
* testsuite/18_support/type_info/constexpr.cc: Add explicit
-fdelete-null-pointer-checks option.
2022-01-06 Pavel I. Kryukov <pavel.kryukov@phystech.edu>
Jonathan Wakely <jwakely@redhat.com>