mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-24 01:59:19 +08:00
Daily bump.
This commit is contained in:
parent
90a4851b08
commit
c21402eba6
@ -1,3 +1,7 @@
|
||||
2024-10-13 Josef Melcr <melcrjos@fit.cvut.cz>
|
||||
|
||||
* MAINTAINERS: Add myself to write after approval
|
||||
|
||||
2024-10-12 Feng Xue <fxue@os.amperecomputing.com>
|
||||
|
||||
* MAINTAINERS: Add myself to write after approval.
|
||||
|
@ -1,3 +1,29 @@
|
||||
2024-10-13 Andreas Schwab <schwab@linux-m68k.org>
|
||||
|
||||
* config/m68k/m68k.md ("movsi", "movxf"): Replace
|
||||
reload_in_progress by reload_in_progress || lra_in_progress.
|
||||
* config/m68k/m68k.cc (m68k_legitimate_mem_p)
|
||||
(emit_move_sequence): Likewise.
|
||||
* config/m68k/predicates.md ("fp_src_operand"): Likewise.
|
||||
|
||||
2024-10-13 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/116481
|
||||
* pointer-query.cc (build_printable_array_type):
|
||||
Build an array types with function or method element type
|
||||
manually to avoid bogus diagnostic.
|
||||
|
||||
2024-10-13 Tobias Burnus <tburnus@baylibre.com>
|
||||
|
||||
* gimple-fold.cc (gimple_fold_builtin_acc_on_device): Also fold
|
||||
when offloading is not configured.
|
||||
|
||||
2024-10-13 Jivan Hakobyan <jivanhakobyan9@gmail.com>
|
||||
|
||||
* config/riscv/riscv.md (zero_extendsidi2): If RHS is already
|
||||
zero extended, then this is just a copy.
|
||||
(extendsidi2): Similarly, but for sign extension.
|
||||
|
||||
2024-10-12 Feng Xue <fxue@os.amperecomputing.com>
|
||||
|
||||
PR tree-optimization/116985
|
||||
|
@ -1 +1 @@
|
||||
20241013
|
||||
20241014
|
||||
|
@ -1,3 +1,14 @@
|
||||
2024-10-13 Simon Martin <simon@nasilyan.com>
|
||||
|
||||
Revert:
|
||||
2024-10-12 Simon Martin <simon@nasilyan.com>
|
||||
|
||||
PR c++/109918
|
||||
* class.cc (warn_hidden): Keep track of overloaded and of hidden
|
||||
base methods. Mention the actual hiding function in the warning,
|
||||
not the first overload.
|
||||
* error.cc (location_of): Skip over conv_op_marker.
|
||||
|
||||
2024-10-12 Simon Martin <simon@nasilyan.com>
|
||||
|
||||
PR c++/109918
|
||||
|
@ -1,3 +1,15 @@
|
||||
2024-10-13 Tobias Burnus <tburnus@baylibre.com>
|
||||
|
||||
* gfortran.h (gfc_option_t): Add disable_acc_on_device.
|
||||
* options.cc (gfc_handle_option): Handle -fno-builtin-acc_on_device.
|
||||
* trans-decl.cc (gfc_get_extern_function_decl): Move
|
||||
__builtin_omp_is_initial_device handling to ...
|
||||
* trans-expr.cc (get_builtin_fn): ... this new function.
|
||||
(conv_function_val): Call it.
|
||||
(update_builtin_function): New.
|
||||
(gfc_conv_procedure_call): Call it.
|
||||
* types.def (BT_BOOL): Fix type by using bool_type_node.
|
||||
|
||||
2024-10-12 Thomas Koenig <tkoenig@gcc.gnu.org>
|
||||
|
||||
* dump-parse-tree.cc (get_c_type_name): Also handle BT_UNSIGNED.
|
||||
|
@ -1,3 +1,22 @@
|
||||
2024-10-13 Simon Martin <simon@nasilyan.com>
|
||||
|
||||
Revert:
|
||||
2024-10-13 Simon Martin <simon@nasilyan.com>
|
||||
|
||||
PR c++/109918
|
||||
* g++.dg/warn/Woverloaded-virt1.C: Check that no warning is
|
||||
emitted for non virtual base methods.
|
||||
* g++.dg/warn/Woverloaded-virt5.C: New test.
|
||||
* g++.dg/warn/Woverloaded-virt6.C: New test.
|
||||
* g++.dg/warn/Woverloaded-virt7.C: New test.
|
||||
* g++.dg/warn/Woverloaded-virt8.C: New test.
|
||||
* g++.dg/warn/Woverloaded-virt9.C: New test.
|
||||
|
||||
2024-10-13 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/116481
|
||||
* gcc.dg/pr116481.c: New testcase.
|
||||
|
||||
2024-10-12 Thomas Koenig <tkoenig@gcc.gnu.org>
|
||||
|
||||
* gfortran.dg/unsigned_36.f90: New test.
|
||||
|
@ -1,3 +1,17 @@
|
||||
2024-10-13 Tobias Burnus <tburnus@baylibre.com>
|
||||
|
||||
* libgomp.texi (TR13): Fix minor typos.
|
||||
(omp_is_initial_device): Improve wording.
|
||||
(acc_on_device): Note how to disable the builtin.
|
||||
* testsuite/libgomp.oacc-fortran/acc_on_device-1-1.f90: Remove TODO.
|
||||
* testsuite/libgomp.oacc-fortran/acc_on_device-1-2.f: Likewise.
|
||||
Add -fno-builtin-acc_on_device.
|
||||
* testsuite/libgomp.oacc-fortran/acc_on_device-1-3.f: Likewise.
|
||||
* testsuite/libgomp.oacc-c-c++-common/routine-nohost-1.c: Update
|
||||
dg- as !offloading_enabled now compile-time expands acc_on_device.
|
||||
* testsuite/libgomp.fortran/target-is-initial-device-3.f90: New test.
|
||||
* testsuite/libgomp.oacc-fortran/acc_on_device-2.f90: New test.
|
||||
|
||||
2024-10-07 Tobias Burnus <tburnus@baylibre.com>
|
||||
|
||||
* testsuite/libgomp.fortran/allocate-static.f90: Moved from
|
||||
|
@ -1,3 +1,17 @@
|
||||
2024-10-13 Sam James <sam@gentoo.org>
|
||||
|
||||
* testsuite/17_intro/names_fortify.cc: Undefine _FORTIFY_SOURCE.
|
||||
|
||||
2024-10-13 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
PR libstdc++/117121
|
||||
* include/bits/ranges_algobase.h (copy_backward): Decrement
|
||||
output iterator before assigning one element through it.
|
||||
* testsuite/25_algorithms/copy/108846.cc: Ensure the algorithm's
|
||||
effects are correct for a single memcpyable element.
|
||||
* testsuite/25_algorithms/copy_backward/108846.cc: Likewise.
|
||||
* testsuite/25_algorithms/copy_n/108846.cc: Likewise.
|
||||
|
||||
2024-10-11 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* include/bits/stl_iterator.h (__niter_base(move_iterator<I>))
|
||||
|
Loading…
Reference in New Issue
Block a user