diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-01-22 00:17:47 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-01-22 00:17:47 +0000 |
commit | d9ed3ac20e893f4e278a1e3db073b715096c7879 (patch) | |
tree | bd556648278f80793e4791456dc83b617761a303 /gcc | |
parent | 3a6b650689b9bd43eaf8911045e1852fd45bad44 (diff) | |
download | gcc-d9ed3ac20e893f4e278a1e3db073b715096c7879.zip gcc-d9ed3ac20e893f4e278a1e3db073b715096c7879.tar.gz gcc-d9ed3ac20e893f4e278a1e3db073b715096c7879.tar.bz2 |
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 45 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/c/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/fortran/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 25 |
5 files changed, 84 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 58dcebe..2716800 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,48 @@ +2024-01-21 Mikael Pettersson <mikpelinux@gmail.com> + + PR target/82420 + PR target/111279 + * calls.cc (emit_library_call_value_1): Pass valid TYPE + to emit_push_insn. + * expr.cc (emit_push_insn): Likewise. + +2024-01-21 Jeff Law <jlaw@ventanamicro.com> + + * config/riscv/riscv.cc (riscv_init_cumulative_args): Install + correcction version of last change. + +2024-01-21 Jeff Law <jlaw@ventanamicro.com> + + * config/riscv/riscv.cc (riscv_init_cumulative_args): Update and + fix bugs in signature. + +2024-01-21 Roger Sayle <roger@nextmovesoftware.com> + Richard Biener <rguenther@suse.de> + + PR rtl-optimization/111267 + * fwprop.cc (fwprop_propagation::profitabe_p): Rename + profitable_p method to likely_profitable_p. + (try_fwprop_subst_node): Update call to likely_profitable_p. + Only bail-out early when !prop.likely_profitable_p for instructions + that are not single sets. When comparing costs, bail-out if the + cost is unchanged and !prop.likely_profitable_p. + +2024-01-21 Sandra Loosemore <sandra@codesourcery.com> + + PR c++/90464 + * doc/invoke.texi (Warning Options): Document that -Wunused-parameter + isn't enabled by -Wunused unless -Wextra is provided, and that + -Wunused does enable -Wunused-const-variable=1 for C. Clarify that + -Wunused doesn't enable -Wunused-* options documented as behaving + otherwise, and list them explicitly. + +2024-01-21 Sandra Loosemore <sandra@codesourcery.com> + + PR c/109708 + * doc/invoke.texi (Warning Options): Fix broken example and + clean up/reorganize the others. Also describe what the short-form + options mean. + 2024-01-20 Sandra Loosemore <sandra@codesourcery.com> PR c/102998 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index fefaa8a..3787e5a 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20240121 +20240122 diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index e7bcd95..b1c887b 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,3 +1,10 @@ +2024-01-21 Martin Uecker <uecker@tugraz.at> + + PR c/113492 + * c-decl.cc (grokdeclarator): Use c_common_unsigned_type instead of + unsigned_type_for to create the unsigned type for bitfields declared + with int when using -funsigned-bitfields. + 2024-01-12 Jakub Jelinek <jakub@redhat.com> PR c/113315 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 17c7a0e..d1e3ab3 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,9 @@ +2024-01-21 Harald Anlauf <anlauf@gmx.de> + + PR fortran/113377 + * trans-expr.cc (gfc_conv_procedure_call): Fix handling of optional + scalar arguments of intrinsic type with the VALUE attribute. + 2024-01-20 Mikael Morin <mikael@gcc.gnu.org> PR fortran/48776 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index bba064a..00aed6b 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,28 @@ +2024-01-21 Mary Bennett <mary.bennett@embecosm.com> + + * gcc.target/riscv/cv-alu-fail-compile.c: Change warning to error. + +2024-01-21 Co-authored-by: Thorsten Otto <admin@tho-otto.de> + + PR target/82420 + * gcc.target/m68k/pr82420.c: New test. + +2024-01-21 Roger Sayle <roger@nextmovesoftware.com> + Richard Biener <rguenther@suse.de> + + PR rtl-optimization/111267 + * gcc.target/i386/pr111267.c: New test case. + +2024-01-21 Harald Anlauf <anlauf@gmx.de> + + PR fortran/113377 + * gfortran.dg/optional_absent_9.f90: New test. + +2024-01-21 Martin Uecker <uecker@tugraz.at> + + PR c/113492 + * gcc.dg/pr113492.c: New test. + 2024-01-20 John David Anglin <danglin@gcc.gnu.org> * gcc.dg/ipa/iinline-4.c: Remove dg-final xfail for |