From: GCC Administrator Date: Mon, 18 Dec 2023 00:17:21 +0000 (+0000) Subject: Daily bump. X-Git-Tag: basepoints/gcc-15~3494 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5440b59e93dcb7e8bdd767f48453a8f229d73a0a;p=thirdparty%2Fgcc.git Daily bump. --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d26d975dd32b..aeb89542d4fb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,45 @@ +2023-12-17 Xi Ruoyao + + * config/loongarch/loongarch.md (alslsi3_extend): New + define_insn. + +2023-12-17 Xi Ruoyao + + 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 + + * config/loongarch/loongarch-def.cc (rtl.h): Include. + (COSTS_N_INSNS): Remove the macro definition. + +2023-12-17 Gerald Pfeifer + + PR target/69374 + * doc/install.texi (Specific) : Remove a note on + GCC 4.3. + Remove details on how the HP assembler, which we document as not + working, breaks. + : Note that only the HP linker is supported. + +2023-12-17 Gerald Pfeifer + + 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 * json.cc (print_escaped_json_string): New, taken from diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 66d0586e1432..f613fe594d8e 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20231217 +20231218 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index ca3bc56b5a8f..90e31b59cf88 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,11 @@ +2023-12-17 Harald Anlauf + + 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 PR fortran/112459 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index cce8326de12c..21890a5c1732 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,13 @@ +2023-12-17 Harald Anlauf + + PR fortran/97592 + * gfortran.dg/contiguous_15.f90: New test. + +2023-12-17 Xi Ruoyao + + PR target/112936 + * gcc.target/loongarch/mul-const-reduction.c: New test. + 2023-12-16 Nathaniel Shead PR c++/106363