summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2022-08-02 00:16:51 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2022-08-02 00:16:51 +0000
commit325103829ef5996b66fff7ed77cc069c4394395b (patch)
tree648a04c98bd994453dee79706752a2f0e2c5f626
parente8bc6918b31e63fcaebe1e9dd64e0157d54f1b7a (diff)
downloadgcc-325103829ef5996b66fff7ed77cc069c4394395b.tar.gz
Daily bump.
-rw-r--r--ChangeLog5
-rw-r--r--config/ChangeLog6
-rw-r--r--gcc/ChangeLog69
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/c/ChangeLog7
-rw-r--r--gcc/testsuite/ChangeLog30
-rw-r--r--libgfortran/ChangeLog7
-rw-r--r--lto-plugin/ChangeLog6
8 files changed, 131 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ebc62a99f44..38c4d3aa5fc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2022-08-01 Roger Sayle <roger@nextmovesoftware.com>
+ Arnaud Charlet <charlet@adacore.com>
+
+ * configure: Regenerate.
+
2022-07-31 Roger Sayle <roger@nextmovesoftware.com>
PR bootstrap/106472
diff --git a/config/ChangeLog b/config/ChangeLog
index 7e2ea8d742e..09fe8c282b1 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,3 +1,9 @@
+2022-08-01 Roger Sayle <roger@nextmovesoftware.com>
+ Arnaud Charlet <charlet@adacore.com>
+
+ * acx.m4 (AC_PROG_GNAT): Update conftest.adb to include
+ features required of the host gnat compiler.
+
2022-06-01 David Seifert <soap@gentoo.org>
PR plugins/95648
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 22cf563d32d..cb8e58053da 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,72 @@
+2022-08-01 David Malcolm <dmalcolm@redhat.com>
+
+ * doc/invoke.texi (-Wanalyzer-putenv-of-auto-var): Fix copy&paste
+ error.
+
+2022-08-01 Roger Sayle <roger@nextmovesoftware.com>
+ Uroš Bizjak <ubizjak@gmail.com>
+
+ PR target/106481
+ * config/i386/i386-features.cc (timode_scalar_chain::convert_insn):
+ Convert a CONST_SCALAR_INT_P in a REG_EQUAL note into a V1TImode
+ CONST_VECTOR.
+
+2022-08-01 H.J. Lu <hjl.tools@gmail.com>
+
+ PR target/83782
+ * config/i386/i386.cc (ix86_ifunc_ref_local_ok): New.
+ (TARGET_IFUNC_REF_LOCAL_OK): Use it.
+
+2022-08-01 Jose E. Marchesi <jose.marchesi@oracle.com>
+
+ PR debug/106263
+ * ctfc.h (struct ctf_dtdef): Add field linkage.
+ * ctfc.cc (ctf_add_function): Set ctti_linkage.
+ * dwarf2ctf.cc (gen_ctf_function_type): Pass a linkage for
+ function types and subprograms.
+ * btfout.cc (btf_asm_func_type): Emit linkage information for the
+ function.
+ (btf_dtd_emit_preprocess_cb): Propagate the linkage information
+ for functions.
+
+2022-08-01 Andrew Stubbs <ams@codesourcery.com>
+ Jakub Jelinek <jakub@redhat.com>
+
+ * omp-simd-clone.cc (simd_clone_adjust): Convert shift_cnt to match
+ the mask type.
+
+2022-08-01 Sam Feifer <sfeifer@redhat.com>
+
+ PR tree-optimization/104992
+ * match.pd (x / y * y == x): New simplification.
+
+2022-08-01 Aldy Hernandez <aldyh@redhat.com>
+
+ * value-range.cc (tree_compare): New.
+ (frange::set): Make more general.
+ (frange::normalize_kind): Cleanup and return bool.
+ (frange::union_): Use normalize_kind return value.
+ (frange::intersect): Same.
+ (frange::verify_range): Remove unnecessary else.
+ * value-range.h (vrp_val_max): Move before frange class.
+ (vrp_val_min): Same.
+ (frange::frange): Remove set to m_type.
+
+2022-08-01 Aldy Hernandez <aldyh@redhat.com>
+
+ * value-range.cc (vrange::supports_type_p): Use const_tree.
+ (irange::supports_type_p): Same.
+ (frange::supports_type_p): Same.
+ * value-range.h (Value_Range::supports_type_p): Same.
+ (irange::supports_p): Same.
+
+2022-08-01 Aldy Hernandez <aldyh@redhat.com>
+
+ * gimple-range-fold.cc (fold_using_range::range_of_phi): Only
+ query SCEV for integers.
+ (fold_using_range::range_of_ssa_name_with_loop_info): Remove
+ irange check.
+
2022-07-31 Roger Sayle <roger@nextmovesoftware.com>
* config/i386/i386.md (define_expand <any_rotate>ti3): For
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index ed14e56feeb..dd67218a4ee 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20220801
+20220802
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index 3aa672b0b79..cffb462a1dc 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,10 @@
+2022-08-01 David Malcolm <dmalcolm@redhat.com>
+
+ * c-typeck.cc (build_c_cast): Quote names of address spaces in
+ diagnostics.
+ (convert_for_assignment): Add a note to address space mismatch
+ diagnostics, specifying the expected and actual types.
+
2022-07-10 Lewis Hyatt <lhyatt@gmail.com>
PR preprocessor/97498
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 781bba72408..28fbfc60184 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,33 @@
+2022-08-01 David Malcolm <dmalcolm@redhat.com>
+
+ * gcc.target/i386/addr-space-typeck-1.c: New test.
+ * gcc.target/i386/addr-space-typeck-2.c: New test.
+
+2022-08-01 Roger Sayle <roger@nextmovesoftware.com>
+ Uroš Bizjak <ubizjak@gmail.com>
+
+ PR target/106481
+ * gcc.target/i386/pr106481.c: New test case.
+
+2022-08-01 H.J. Lu <hjl.tools@gmail.com>
+
+ PR target/83782
+ * gcc.target/i386/pr83782-1.c: Require non-ia32.
+ * gcc.target/i386/pr83782-2.c: Likewise.
+ * gcc.target/i386/pr83782-3.c: New test.
+
+2022-08-01 Jose E. Marchesi <jose.marchesi@oracle.com>
+
+ PR debug/106263
+ * gcc.dg/debug/btf/btf-function-4.c: New test.
+ * gcc.dg/debug/btf/btf-function-5.c: Likewise.
+
+2022-08-01 Sam Feifer <sfeifer@redhat.com>
+
+ PR tree-optimization/104992
+ * g++.dg/pr104992-1.C: New test.
+ * gcc.dg/pr104992.c: New test.
+
2022-07-31 Roger Sayle <roger@nextmovesoftware.com>
H.J. Lu <hjl.tools@gmail.com>
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index d1b2b2c9844..9d7f83d41af 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -1,3 +1,10 @@
+2022-08-01 Jakub Jelinek <jakub@redhat.com>
+
+ PR libfortran/106079
+ * io/transfer.c (formatted_transfer_scalar_read,
+ formatted_transfer_scalar_write): For type BT_REAL with kind 17
+ change kind to 16 before calling read_radix or write_{b,o,z}.
+
2022-06-29 Jakub Jelinek <jakub@redhat.com>
* mk-kinds-h.sh: Change __float128 to _Float128 in a comment.
diff --git a/lto-plugin/ChangeLog b/lto-plugin/ChangeLog
index eb37870da29..23cee8daf10 100644
--- a/lto-plugin/ChangeLog
+++ b/lto-plugin/ChangeLog
@@ -1,3 +1,9 @@
+2022-08-01 Martin Liska <mliska@suse.cz>
+
+ PR lto/106170
+ * configure.ac: Replace $target with $host.
+ * configure: Regenerate.
+
2022-07-14 Martin Liska <mliska@suse.cz>
PR bootstrap/106156