mirror of git://gcc.gnu.org/git/gcc.git
Daily bump.
This commit is contained in:
parent
0ff1ea6a6a
commit
179c8d54fe
|
|
@ -1,3 +1,25 @@
|
|||
2025-12-10 Alexandre Oliva <oliva@adacore.com>
|
||||
|
||||
* config/i386/i386.md (lea peephole2): Add 3 new variants.
|
||||
|
||||
2025-12-10 Jakub Jelinek <jakub@redhat.com>
|
||||
Andrew Pinski <andrew.pinski@oss.qualcomm.com>
|
||||
|
||||
PR middle-end/123069
|
||||
* tree-vect-generic.cc (expand_vector_mult): Use
|
||||
build_zero_cst (vectype) instead of build_int_cst (vectype, 0).
|
||||
|
||||
2025-12-10 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* doc/invoke.texi (C++ Modules): Remove standard library header
|
||||
units from missing pieces, mention importable header redirection.
|
||||
|
||||
2025-12-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||
|
||||
* config/sol2.h (PID_TYPE): Define.
|
||||
* doc/tm.texi.in (Type Layout): Document PID_TYPE.
|
||||
* doc/tm.texi: Regenerate.
|
||||
|
||||
2025-12-09 John Ericson <git@JohnEricson.me>
|
||||
|
||||
* Makefile.in: No longer include TARGET_SYSTEM_ROOT in
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
20251210
|
||||
20251211
|
||||
|
|
|
|||
|
|
@ -1,3 +1,21 @@
|
|||
2025-12-10 Jose E. Marchesi <jose.marchesi@oracle.com>
|
||||
|
||||
* lang.opt: Add entry for OPT_L.
|
||||
|
||||
2025-12-10 Jose E. Marchesi <jose.marchesi@oracle.com>
|
||||
|
||||
* a68-imports.cc (a68_try_packet_in_directory): do not try
|
||||
extensionless packet files.
|
||||
|
||||
2025-12-10 Jose E. Marchesi <jose.marchesi@oracle.com>
|
||||
|
||||
* a68-low-ints.cc (a68_int_sign): Avoid gimplifying val twice.
|
||||
* a68-low-reals.cc (a68_real_sign): Likewise.
|
||||
|
||||
2025-12-10 Jose E. Marchesi <jose.marchesi@oracle.com>
|
||||
|
||||
* a68-low-prelude.cc (a68_lower_char_mult3): Fix asserts.
|
||||
|
||||
2025-12-06 Jose E. Marchesi <jose.marchesi@oracle.com>
|
||||
|
||||
PR algol68/123007
|
||||
|
|
|
|||
|
|
@ -1,3 +1,9 @@
|
|||
2025-12-10 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* module.cc (maybe_translate_include): Suggest <bits/stdc++.h>
|
||||
as an alternate for importable standard library headers.
|
||||
(importable_headers, is_importable_header): New.
|
||||
|
||||
2025-12-09 Nathaniel Shead <nathanieloshead@gmail.com>
|
||||
|
||||
Revert:
|
||||
|
|
|
|||
|
|
@ -1,3 +1,55 @@
|
|||
2025-12-10 Alexandre Oliva <oliva@adacore.com>
|
||||
|
||||
* gcc.target/i386/lea-3.c: Add -fno-PIE.
|
||||
* gcc.target/i386/lea-4.c: New, with -fPIE.
|
||||
|
||||
2025-12-10 Alexandre Oliva <oliva@adacore.com>
|
||||
|
||||
* gcc.dg/sibcall-12.c: Add -fno-PIE on ia32.
|
||||
* gcc.target/i386/pr106060-2.c: Likewise.
|
||||
* gcc.target/i386/pr106060-3.c: Likewise.
|
||||
* gcc.target/i386/vect-shiftv4qi.c: Likewise.
|
||||
|
||||
2025-12-10 Jakub Jelinek <jakub@redhat.com>
|
||||
Andrew Pinski <andrew.pinski@oss.qualcomm.com>
|
||||
|
||||
PR middle-end/123069
|
||||
* gcc.c-torture/compile/pr123069.c: New test.
|
||||
|
||||
2025-12-10 Jose E. Marchesi <jose.marchesi@oracle.com>
|
||||
|
||||
* algol68/execute/sign-int-2.a68: New test.
|
||||
* algol68/execute/sign-real-2.a68: Likewise.
|
||||
|
||||
2025-12-10 Jose E. Marchesi <jose.marchesi@oracle.com>
|
||||
|
||||
* algol68/execute/mult-char-1.a68: Cover int*char cases.
|
||||
|
||||
2025-12-10 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* g++.dg/modules/compile-std1.C: Test <vector> translation.
|
||||
|
||||
2025-12-10 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* g++.dg/modules/compile-std1.C: Add dg-module-cmi lines.
|
||||
* g++.dg/modules/modules.exp (host_header_path): New.
|
||||
(munge_cmi): Factor out...
|
||||
(dg-module-cmi): ...from here.
|
||||
|
||||
2025-12-10 Robin Dapp <rdapp@ventanamicro.com>
|
||||
|
||||
* gcc.target/riscv/rvv/autovec/pr123074.C: Move to...
|
||||
* g++.target/riscv/rvv/autovec/pr123074.C: ...here.
|
||||
* gcc.target/riscv/rvv/rvv.exp: Remove 'C'.
|
||||
|
||||
2025-12-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||
|
||||
* g++.dg/lookup/extern-c-redecl3.C (pid_t): Define.
|
||||
Use it for fork return type.
|
||||
terms of __builtin_fork.
|
||||
* g++.dg/pid_t-1.C: New test.
|
||||
* gcc.dg/pid_t-1.c: Likewise.
|
||||
|
||||
2025-12-09 Robin Dapp <rdapp@ventanamicro.com>
|
||||
|
||||
PR tree-optimization/123074
|
||||
|
|
|
|||
|
|
@ -1,3 +1,12 @@
|
|||
2025-12-10 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* include/cpplib.h (struct cpp_callbacks): Replace 'path' parameter
|
||||
with file, angle_brackets, and alternate name.
|
||||
(cpp_get_name): Declare.
|
||||
* files.cc (cpp_get_name): New.
|
||||
(_cpp_stack_include, _cpp_post_stack_file, _cpp_stack_file)
|
||||
(_cpp_stack_translated_file): Refactor, try alternate file.
|
||||
|
||||
2025-12-07 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* include/cpplib.h (cpp_get_path, cpp_get_dir): Remove.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
2025-12-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||
|
||||
* LOCAL_PATCHES: Update.
|
||||
|
||||
2025-12-02 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* LOCAL_PATCHES: Update.
|
||||
|
|
|
|||
Loading…
Reference in New Issue