]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Fri, 21 May 2021 00:18:54 +0000 (00:18 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Fri, 21 May 2021 00:18:54 +0000 (00:18 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/testsuite/ChangeLog
libstdc++-v3/ChangeLog

index e3051116b82cf996d0990df19b279c71e2f4514b..01523448590d17ac081e47c607411b8e6b2808ba 100644 (file)
@@ -1,3 +1,15 @@
+2021-05-20  Andreas Krebbel  <krebbel@linux.ibm.com>
+
+       Backported from master:
+       2021-05-18  Andreas Krebbel  <krebbel@linux.ibm.com>
+
+       PR c++/100281
+       * tree.c (build_reference_type_for_mode)
+       (build_pointer_type_for_mode): Pick pointer mode if MODE argument
+       is VOIDmode.
+       (build_reference_type, build_pointer_type): Invoke
+       build_*_type_for_mode with VOIDmode.
+
 2021-05-19  Bill Schmidt  <wschmidt@linux.ibm.com>
 
        * config/rs6000/rs6000-c.c (rs6000_target_modify_macros): Define
index e63f6d4142a927799f8be8034647d5bbca57a683..6e5d5d3afec7dd9b69e0535ed7b943f8148e1953 100644 (file)
@@ -1 +1 @@
-20210520
+20210521
index a18dd9a1014d3d437da5e6a4e1a4f1f73daf289a..eeb884ded4d6ec076449be8860f27cf75ac28abd 100644 (file)
@@ -1,3 +1,36 @@
+2021-05-20  Jason Merrill  <jason@redhat.com>
+
+       PR c++/100489
+       * decl.c (reshape_init_class): Handle designator for
+       member of anonymous aggregate here.
+       * typeck2.c (process_init_constructor_record): Not here.
+
+2021-05-20  Andreas Krebbel  <krebbel@linux.ibm.com>
+
+       Backported from master:
+       2021-05-18  Andreas Krebbel  <krebbel@linux.ibm.com>
+
+       PR c++/100281
+       * cvt.c (cp_convert_to_pointer): Use the size of the target
+       pointer type.
+       * tree.c (cp_build_reference_type): Call
+       cp_build_reference_type_for_mode with VOIDmode.
+       (cp_build_reference_type_for_mode): Rename from
+       cp_build_reference_type.  Add MODE argument and invoke
+       build_reference_type_for_mode.
+       (strip_typedefs): Use build_pointer_type_for_mode and
+       cp_build_reference_type_for_mode for pointers and references.
+
+2021-05-20  Jason Merrill  <jason@redhat.com>
+
+       PR c++/100634
+       * pt.c (invalid_nontype_parm_type_p): Return true for COMPLEX_TYPE.
+
+2021-05-20  Jason Merrill  <jason@redhat.com>
+
+       PR c++/100659
+       * cp-tree.h (CONST_DECL_USING_P): Check for null TREE_TYPE.
+
 2021-05-19  Jason Merrill  <jason@redhat.com>
 
        PR c++/100367
index 573d53388511e5a3a7dc5127d8fe9333c3448c6e..fc9126ff274a4b2a6bacab9f9a198c89e28b423a 100644 (file)
@@ -1,3 +1,42 @@
+2021-05-20  Jason Merrill  <jason@redhat.com>
+
+       PR c++/100489
+       * g++.dg/cpp2a/desig18.C: New test.
+
+2021-05-20  Andreas Krebbel  <krebbel@linux.ibm.com>
+
+       Backported from master:
+       2021-05-18  Andreas Krebbel  <krebbel@linux.ibm.com>
+
+       PR c++/100281
+       * g++.target/s390/pr100281-1.C: New test.
+       * g++.target/s390/pr100281-2.C: New test.
+
+2021-05-20  Eric Botcazou  <ebotcazou@adacore.com>
+
+       PR testsuite/96488
+       * gnat.dg/unchecked_convert5.adb: Do not run on PowerPC64 LE.
+       * gnat.dg/unchecked_convert6.adb: Likewise.
+
+2021-05-20  Tobias Burnus  <tobias@codesourcery.com>
+
+       Backported from master:
+       2021-05-20  Tobias Burnus  <tobias@codesourcery.com>
+
+       PR fortran/96983
+       * gfortran.dg/pr96711.f90: Use 2**digit(x) instead of a hard-coded value;
+       add comments regarding what the code does.
+
+2021-05-20  Jason Merrill  <jason@redhat.com>
+
+       PR c++/100634
+       * g++.dg/cpp2a/nontype-complex1.C: New test.
+
+2021-05-20  Jason Merrill  <jason@redhat.com>
+
+       PR c++/100659
+       * g++.dg/parse/access13.C: New test.
+
 2021-05-19  Bill Schmidt  <wschmidt@linux.ibm.com>
 
        * gcc.target/powerpc/rop-1.c: New.
index e97734abdca8abac7bb2606ca9cf13d9f84d8b2f..c4cfab26da256ac03e92239cdbfc8f6cac816e8c 100644 (file)
@@ -1,3 +1,14 @@
+2021-05-20  Joern Rennecke  <joern.rennecke@riscy-ip.com>
+
+       PR libstdc++/100361
+       * include/std/charconv (to_chars): Hide the overloads for
+       floating-point types for 16 bit targets.
+       * src/c++17/floating_to_chars.cc: Don't compile for 16 bit targets.
+       * testsuite/20_util/to_chars/double.cc: Run this test only on
+       size32plus targets.
+       * testsuite/20_util/to_chars/float.cc: Likewise.
+       * testsuite/20_util/to_chars/long_double.cc: Likewise.
+
 2021-05-17  Jonathan Wakely  <jwakely@redhat.com>
 
        Backported from master: