aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--contrib/ChangeLog11
-rw-r--r--gcc/ChangeLog63
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/cp/ChangeLog6
-rw-r--r--gcc/po/ChangeLog4
-rw-r--r--gcc/testsuite/ChangeLog25
-rw-r--r--libstdc++-v3/ChangeLog23
7 files changed, 133 insertions, 1 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index ee7b5b5..39f46c4 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -1,3 +1,14 @@
+2021-04-12 Martin Liska <mliska@suse.cz>
+
+ * gcc-changelog/git_commit.py: Do not allow space in long lines.
+
+2021-04-12 Martin Liska <mliska@suse.cz>
+
+ * gcc-changelog/git_commit.py: Support long filenames
+ in entries.
+ * gcc-changelog/test_email.py: Test it.
+ * gcc-changelog/test_patches.txt: Likewise.
+
2021-03-23 Martin Liska <mliska@suse.cz>
* mklog.py: Fix broken tests.
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 56c66b2..e3d6739 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,66 @@
+2021-04-12 Jakub Jelinek <jakub@redhat.com>
+
+ PR rtl-optimization/99905
+ * combine.c (expand_compound_operation): If pos + len > modewidth,
+ perform the right shift by pos in inner_mode and then convert to mode,
+ instead of trying to simplify a shift of rtx with inner_mode by pos
+ as if it was a shift in mode.
+
+2021-04-12 Jakub Jelinek <jakub@redhat.com>
+
+ PR debug/99830
+ * combine.c (simplify_and_const_int_1): Don't optimize varop
+ away if it has side-effects.
+
+2021-04-12 Martin Liska <mliska@suse.cz>
+
+ * doc/extend.texi: Escape @smallexample content.
+
+2021-04-12 Stefan Schulze Frielinghaus <stefansf@linux.ibm.com>
+
+ * config/s390/s390.md ("*movdi_31", "*movdi_64"): Add
+ alternative in order to load a DFP zero.
+
+2021-04-12 Martin Liska <mliska@suse.cz>
+
+ * doc/extend.texi: Be more precise in documentation
+ of symver attribute.
+
+2021-04-12 Martin Liska <mliska@suse.cz>
+
+ PR sanitizer/99877
+ * gimplify.c (gimplify_expr): Right now, we unpoison all
+ variables before a goto <dest>. We should not do it if we are
+ in a omp context.
+
+2021-04-12 Cui,Lili <lili.cui@intel.com>
+
+ * common/config/i386/cpuinfo.h (get_intel_cpu): Handle
+ rocketlake.
+ * common/config/i386/i386-common.c (processor_names): Add
+ rocketlake.
+ (processor_alias_table): Add rocketlake.
+ * common/config/i386/i386-cpuinfo.h (processor_subtypes): Add
+ INTEL_COREI7_ROCKETLAKE.
+ * config.gcc: Add -march=rocketlake.
+ * config/i386/i386-c.c (ix86_target_macros_internal): Handle
+ rocketlake.
+ * config/i386/i386-options.c (m_ROCKETLAKE) : Define.
+ (processor_cost_table): Add rocketlake cost.
+ * config/i386/i386.h (ix86_size_cost) : Define
+ TARGET_ROCKETLAKE.
+ (processor_type) : Add PROCESSOR_ROCKETLAKE.
+ (PTA_ROCKETLAKE): Ditto.
+ * doc/extend.texi: Add rocketlake.
+ * doc/invoke.texi: Add rocketlake.
+
+2021-04-12 Cui,Lili <lili.cui@intel.com>
+
+ * config/i386/i386.h (PTA_ALDERLAKE): Change alderlake ISA list.
+ * config/i386/i386-options.c (m_CORE_AVX2): Add m_ALDERLAKE.
+ * common/config/i386/cpuinfo.h (get_intel_cpu): Add AlderLake model.
+ * doc/invoke.texi: Change alderlake ISA list.
+
2021-04-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
PR middle-end/98088
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index d610023..177ba02 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20210412
+20210413
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index fcb7c2a..208c17e 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,9 @@
+2021-04-12 Jason Merrill <jason@redhat.com>
+
+ PR c++/93085
+ * pt.c (uses_outer_template_parms): Handle non-type and template
+ template parameters specifically.
+
2021-04-11 Jason Merrill <jason@redhat.com>
PR c++/97974
diff --git a/gcc/po/ChangeLog b/gcc/po/ChangeLog
index 1ca1876..848d446 100644
--- a/gcc/po/ChangeLog
+++ b/gcc/po/ChangeLog
@@ -1,3 +1,7 @@
+2021-04-12 Joseph Myers <joseph@codesourcery.com>
+
+ * sv.po: Update.
+
2021-04-06 Joseph Myers <joseph@codesourcery.com>
* de.po: Update.
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 646e092..9f9a25f 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,28 @@
+2021-04-12 Jakub Jelinek <jakub@redhat.com>
+
+ PR rtl-optimization/99905
+ * gcc.target/i386/pr99905.c: New test.
+
+2021-04-12 Jakub Jelinek <jakub@redhat.com>
+
+ PR debug/99830
+ * gcc.dg/pr99830.c: New test.
+
+2021-04-12 Jason Merrill <jason@redhat.com>
+
+ PR c++/93085
+ * g++.dg/template/dependent-tmpl1.C: New test.
+
+2021-04-12 Martin Liska <mliska@suse.cz>
+
+ PR sanitizer/99877
+ * g++.dg/asan/pr99877.C: New test.
+
+2021-04-12 Cui,Lili <lili.cui@intel.com>
+
+ * gcc.target/i386/funcspec-56.inc: Handle new march.
+ * g++.target/i386/mv16.C: Handle new march
+
2021-04-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
PR middle-end/98088
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 7b19ca5..82af666 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,26 @@
+2021-04-12 Jonathan Wakely <jwakely@redhat.com>
+
+ PR libstdc++/100044
+ * include/bits/ranges_util.h (__detail::__iterator_sentinel_pair):
+ Remove helper concept.
+ (subrange(_Pr), subrange(Pr, __make_unsigned_like<...>)): Remove
+ deduction guides, as per LWG 3404.
+ * testsuite/std/ranges/subrange/lwg3282_neg.cc: Check that class
+ template argument deduction fails.
+
+2021-04-12 Jonathan Wakely <jwakely@redhat.com>
+
+ * testsuite/26_numerics/random/linear_congruential_engine/requirements/non_uint_neg.cc:
+ Adjust expected error for C++20 mode.
+ * testsuite/tr1/5_numerical_facilities/random/linear_congruential/requirements/non_uint_neg.cc:
+ Likewise.
+
+2021-04-12 Jonathan Wakely <jwakely@redhat.com>
+
+ PR libstdc++/99995
+ * testsuite/17_intro/headers/c++1998/49745.cc: Include all
+ standard headers and XFAIL for effective-target c++20.
+
2021-04-09 François Dumont <fdumont@gcc.gnu.org>
PR libstdc++/99402