diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2022-09-17 00:17:20 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2022-09-17 00:17:20 +0000 |
commit | 7ee0fa100f0f28d7b88237d520131e07b7b49f0a (patch) | |
tree | 7fe0367477b5ff0a4d6b9d4b42a11fdfdba67727 /gcc | |
parent | eaddc87b51117c5f2346089999907c2de5780d37 (diff) | |
download | gcc-7ee0fa100f0f28d7b88237d520131e07b7b49f0a.zip gcc-7ee0fa100f0f28d7b88237d520131e07b7b49f0a.tar.gz gcc-7ee0fa100f0f28d7b88237d520131e07b7b49f0a.tar.bz2 |
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 16 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/cp/ChangeLog | 16 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 15 |
4 files changed, 48 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 840039d..6e09a1a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,19 @@ +2022-09-16 liuhongt <hongtao.liu@intel.com> + + PR target/106910 + * config/i386/i386-builtins.cc + (ix86_builtin_vectorized_function): Modernized with + corresponding expanders. + * config/i386/sse.md (lrint<mode><sseintvecmodelower>2): New + expander. + (floor<mode>2): Ditto. + (lfloor<mode><sseintvecmodelower>2): Ditto. + (ceil<mode>2): Ditto. + (lceil<mode><sseintvecmodelower>2): Ditto. + (btrunc<mode>2): Ditto. + (lround<mode><sseintvecmodelower>2): Ditto. + (exp2<mode>2): Ditto. + 2022-09-15 Joseph Myers <joseph@codesourcery.com> * ginclude/float.h (INFINITY): Define only if diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index e22a65d..c5a8cbf 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20220916 +20220917 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index d3d0e04..8110528 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,19 @@ +2022-09-16 Patrick Palka <ppalka@redhat.com> + + PR c++/92505 + * constexpr.cc (cxx_eval_component_reference): Check non_constant_p + sooner. In C++14 or later, reject a DECL_MUTABLE_P member access + only if CONSTRUCTOR_MUTABLE_POISION is also set. + +2022-09-16 Jason Merrill <jason@redhat.com> + + PR c++/106858 + * parser.cc (cp_parser_omp_var_list_no_open): Pass the + initial token location down. + * semantics.cc (finish_omp_clauses): Check + invalid_nonstatic_memfn_p. + * typeck.cc (invalid_nonstatic_memfn_p): Handle null TREE_TYPE. + 2022-09-15 Richard Biener <rguenther@suse.de> * decl.cc (cxx_init_decl_processing): Inline last diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 064ea43..a40fdd2 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,18 @@ +2022-09-16 Eugene Rozenfeld <erozen@microsoft.com> + + * gcc.dg/tree-prof/indir-call-prof-2.c: Fix dg-final-use-autofdo. + +2022-09-16 Patrick Palka <ppalka@redhat.com> + + PR c++/92505 + * g++.dg/cpp0x/constexpr-mutable3.C: New test. + * g++.dg/cpp1y/constexpr-mutable1.C: New test. + +2022-09-16 Jason Merrill <jason@redhat.com> + + PR c++/106858 + * g++.dg/gomp/map-3.C: New test. + 2022-09-15 Harald Anlauf <anlauf@gmx.de> PR fortran/106857 |