mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
Daily bump.
This commit is contained in:
parent
e8bc6918b3
commit
325103829e
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -1 +1 @@
|
||||
20220801
|
||||
20220802
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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.
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user