diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2022-05-16 00:16:23 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2022-05-16 00:16:23 +0000 |
commit | ac6a32f663a6c3b11c205e7c599bd1d92f80f19a (patch) | |
tree | 37a179aef84236f7cef0d131763ddc7b7dc76940 | |
parent | 18547874ee205d830acb31f1e3c1c89fc7725c14 (diff) | |
download | gcc-ac6a32f663a6c3b11c205e7c599bd1d92f80f19a.zip gcc-ac6a32f663a6c3b11c205e7c599bd1d92f80f19a.tar.gz gcc-ac6a32f663a6c3b11c205e7c599bd1d92f80f19a.tar.bz2 |
Daily bump.
-rw-r--r-- | gcc/ChangeLog | 22 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/cp/ChangeLog | 19 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 15 |
4 files changed, 57 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 31c63f6..fb6deba 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,25 @@ +2022-05-15 Uroš Bizjak <ubizjak@gmail.com> + + * config/i386/i386.md: Remove constraints when used with + const_int_operand, const0_operand, const_1_operand, constm1_operand, + const8_operand, const128_operand, const248_operand, const123_operand, + const2367_operand, const1248_operand, const359_operand, + const_4_or_8_to_11_operand, const48_operand, const_0_to_1_operand, + const_0_to_3_operand, const_0_to_4_operand, const_0_to_5_operand, + const_0_to_7_operand, const_0_to_15_operand, const_0_to_31_operand, + const_0_to_63_operand, const_0_to_127_operand, const_0_to_255_operand, + const_0_to_255_mul_8_operand, const_1_to_31_operand, + const_1_to_63_operand, const_2_to_3_operand, const_4_to_5_operand, + const_4_to_7_operand, const_6_to_7_operand, const_8_to_9_operand, + const_8_to_11_operand, const_8_to_15_operand, const_10_to_11_operand, + const_12_to_13_operand, const_12_to_15_operand, const_14_to_15_operand, + const_16_to_19_operand, const_16_to_31_operand, const_20_to_23_operand, + const_24_to_27_operand and const_28_to_31_operand. + * config/i386/mmx.md: Ditto. + * config/i386/sse.md: Ditto. + * config/i386/subst.md: Ditto. + * config/i386/sync.md: Ditto. + 2022-05-13 Roger Sayle <roger@nextmovesoftware.com> Uroš Bizjak <ubizjak@gmail.com> diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index df5469f..634dc22 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20220515 +20220516 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 090124f..cf79e0c 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,22 @@ +2022-05-15 Jason Merrill <jason@redhat.com> + + PR c++/100502 + PR c++/58993 + * friend.cc (is_friend): Hidden friends count as members. + * search.cc (friend_accessible_p): Likewise. + +2022-05-15 Jason Merrill <jason@redhat.com> + + * parser.cc (cp_parser_template_name): Look through + injected-class-name. + +2022-05-15 Jason Merrill <jason@redhat.com> + + PR c++/105589 + PR c++/105191 + PR c++/92385 + * init.cc (build_value_init): Handle class in template. + 2022-05-13 Nathan Sidwell <nathan@acm.org> * mangle.cc (maybe_write_module): Check external linkage. diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 3109d8e..b643e0b 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,18 @@ +2022-05-15 Jason Merrill <jason@redhat.com> + + PR c++/100502 + PR c++/58993 + * g++.dg/template/access37.C: Now OK. + * g++.dg/template/friend69.C: Now OK. + * g++.dg/lookup/friend23.C: New test. + +2022-05-15 Jason Merrill <jason@redhat.com> + + PR c++/105589 + PR c++/105191 + PR c++/92385 + * g++.dg/cpp0x/initlist-array16.C: New test. + 2022-05-13 Marek Polacek <polacek@redhat.com> PR c++/81952 |