diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2023-12-18 00:17:21 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2023-12-18 00:17:21 +0000 |
commit | 5440b59e93dcb7e8bdd767f48453a8f229d73a0a (patch) | |
tree | f9474035143825a98aeff3746e7994fd9c9f70a3 | |
parent | 5060825aa78b3da036df6437390fd42d094d8f15 (diff) | |
download | gcc-5440b59e93dcb7e8bdd767f48453a8f229d73a0a.zip gcc-5440b59e93dcb7e8bdd767f48453a8f229d73a0a.tar.gz gcc-5440b59e93dcb7e8bdd767f48453a8f229d73a0a.tar.bz2 |
Daily bump.
-rw-r--r-- | gcc/ChangeLog | 42 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/fortran/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 10 |
4 files changed, 61 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d26d975..aeb8954 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,45 @@ +2023-12-17 Xi Ruoyao <xry111@xry111.site> + + * config/loongarch/loongarch.md (alslsi3_extend): New + define_insn. + +2023-12-17 Xi Ruoyao <xry111@xry111.site> + + PR target/112936 + * config/loongarch/loongarch-def.cc + (loongarch_rtx_cost_data::loongarch_rtx_cost_data): Update + instruction costs per micro-benchmark results. + (loongarch_rtx_cost_optimize_size): Set all instruction costs + to (COSTS_N_INSNS (1) + 1). + * config/loongarch/loongarch.cc (loongarch_rtx_costs): Remove + special case for multiplication when optimizing for size. + Adjust division cost when TARGET_64BIT && !TARGET_DIV32. + Account the extra cost when TARGET_CHECK_ZERO_DIV and + optimizing for speed. + +2023-12-17 Xi Ruoyao <xry111@xry111.site> + + * config/loongarch/loongarch-def.cc (rtl.h): Include. + (COSTS_N_INSNS): Remove the macro definition. + +2023-12-17 Gerald Pfeifer <gerald@pfeifer.com> + + PR target/69374 + * doc/install.texi (Specific) <hppa*-hp-hpux*>: Remove a note on + GCC 4.3. + Remove details on how the HP assembler, which we document as not + working, breaks. + <hppa*-hp-hpux11>: Note that only the HP linker is supported. + +2023-12-17 Gerald Pfeifer <gerald@pfeifer.com> + + PR other/69374 + * doc/install.texi (Installing GCC): Remove reference to + buildstat.html. + (Testing): Ditto. + (Final install): Remove section on submitting information for + buildstat.html. Adjust the request for feedback. + 2023-12-16 David Malcolm <dmalcolm@redhat.com> * json.cc (print_escaped_json_string): New, taken from diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 66d0586..f613fe5 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20231217 +20231218 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index ca3bc56..90e31b5 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,11 @@ +2023-12-17 Harald Anlauf <anlauf@gmx.de> + + PR fortran/97592 + * trans-expr.cc (gfc_conv_procedure_call): For a contiguous dummy + with the TARGET attribute, the effective argument may still be + contiguous even if the actual argument is not simply-contiguous. + Allow packing to be decided at runtime by _gfortran_internal_pack. + 2023-12-16 Paul Thomas <pault@gcc.gnu.org> PR fortran/112459 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index cce8326..21890a5 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,13 @@ +2023-12-17 Harald Anlauf <anlauf@gmx.de> + + PR fortran/97592 + * gfortran.dg/contiguous_15.f90: New test. + +2023-12-17 Xi Ruoyao <xry111@xry111.site> + + PR target/112936 + * gcc.target/loongarch/mul-const-reduction.c: New test. + 2023-12-16 Nathaniel Shead <nathanieloshead@gmail.com> PR c++/106363 |