Skip to content

Commit 2fb9033

Browse files
author
GCC Administrator
committed
Daily bump.
1 parent 5957b99 commit 2fb9033

File tree

8 files changed

+200
-1
lines changed

8 files changed

+200
-1
lines changed

gcc/ChangeLog

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
2025-04-10 Iain Sandoe <[email protected]>
2+
3+
* config/darwin.h (LINK_SPEC): Add support for
4+
-static-libgcobol.
5+
6+
2025-04-10 Richard Biener <[email protected]>
7+
8+
PR middle-end/119706
9+
* gimple-expr.cc (is_gimple_mem_ref_addr): Also allow
10+
POLY_INT_CST.
11+
12+
2025-04-10 Richard Sandiford <[email protected]>
13+
14+
PR tree-optimization/119399
15+
* tree-data-ref.cc (create_waw_or_war_checks): Use a MINUS_EXPR
16+
on two converted pointers, rather than converting a POINTER_DIFF_EXPR
17+
on the pointers.
18+
19+
2025-04-10 Kito Cheng <[email protected]>
20+
21+
* config/riscv/multilib-generator: Remove the compact code model
22+
and check large code model for RV32.
23+
124
2025-04-09 Jakub Jelinek <[email protected]>
225

326
* pretty-print.cc (pretty_printer::format): Use %.Ns instead of

gcc/DATESTAMP

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20250410
1+
20250411

gcc/cp/ChangeLog

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
2025-04-10 Jason Merrill <[email protected]>
2+
3+
PR c++/119345
4+
* pt.cc (add_extra_args): Also register a specialization
5+
of the captured variable.
6+
7+
2025-04-10 Patrick Palka <[email protected]>
8+
9+
PR c++/119687
10+
* pt.cc (alias_ctad_tweaks): Use lkp_range / lkp_iterator
11+
instead of ovl_iterator.
12+
13+
2025-04-10 Jakub Jelinek <[email protected]>
14+
15+
PR translation/119684
16+
* error.cc (cp_print_error_function): Use G_ instead of _ for
17+
pp_printf arguments.
18+
(function_category): Use G_ instead of _.
19+
(print_instantiation_full_context): Use G_ instead of _ in pp_verbatim
20+
arguments.
21+
(print_location): Likewise.
22+
(print_instantiation_partial_context): Likewise.
23+
(maybe_print_constexpr_context): Likewise.
24+
(print_constrained_decl_info): Use G_() around pp_verbatim argument.
25+
(print_concept_check_info): Likewise.
26+
(print_constraint_context_head): Likewise.
27+
(print_requires_expression_info): Likewise. Merge separate pp_verbatim
28+
"in requirements " and "with " into one with conditional messages.
29+
30+
2025-04-10 Jason Merrill <[email protected]>
31+
32+
PR c++/119175
33+
* mangle.cc (decl_mangling_context): Look through lambda type.
34+
135
2025-04-09 Patrick Palka <[email protected]>
236

337
PR c++/119574

gcc/testsuite/ChangeLog

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,91 @@
1+
2025-04-10 Jason Merrill <[email protected]>
2+
3+
PR c++/119345
4+
* g++.dg/cpp2a/lambda-targ14.C: New test.
5+
6+
2025-04-10 Patrick Palka <[email protected]>
7+
8+
PR c++/119687
9+
* g++.dg/cpp23/class-deduction-inherited8.C: New test.
10+
11+
2025-04-10 Bob Dubner <[email protected]>
12+
13+
* cobol.dg/group2/Dynamic_reference_modification.cob: New testcase.
14+
* cobol.dg/group2/Length_overflow__1_.cob: Likewise.
15+
* cobol.dg/group2/Length_overflow__2_.cob: Likewise.
16+
* cobol.dg/group2/Length_overflow_with_offset__1_.cob: Likewise.
17+
* cobol.dg/group2/Length_overflow_with_offset__2_.cob: Likewise.
18+
* cobol.dg/group2/Length_overflow_with_offset__3_.cob: Likewise.
19+
* cobol.dg/group2/Offset_overflow.cob: Likewise.
20+
* cobol.dg/group2/Offset_underflow.cob: Likewise.
21+
* cobol.dg/group2/Refmod__comparisons_inside_numeric-display.cob: Likewise.
22+
* cobol.dg/group2/Refmod_sources_are_figurative_constants.cob: Likewise.
23+
* cobol.dg/group2/Static_reference_modification.cob: Likewise.
24+
* cobol.dg/group2/Dynamic_reference_modification.out: New known-good result.
25+
* cobol.dg/group2/Length_overflow__1_.out: Likewise.
26+
* cobol.dg/group2/Length_overflow__2_.out: Likewise.
27+
* cobol.dg/group2/Length_overflow_with_offset__1_.out: Likewise.
28+
* cobol.dg/group2/Length_overflow_with_offset__2_.out: Likewise.
29+
* cobol.dg/group2/Length_overflow_with_offset__3_.out: Likewise.
30+
* cobol.dg/group2/Offset_overflow.out: Likewise.
31+
* cobol.dg/group2/Offset_underflow.out: Likewise.
32+
* cobol.dg/group2/Refmod__comparisons_inside_numeric-display.out: Likewise.
33+
* cobol.dg/group2/Refmod_sources_are_figurative_constants.out: Likewise.
34+
* cobol.dg/group2/Static_reference_modification.out: Likewise.
35+
36+
2025-04-10 Jason Merrill <[email protected]>
37+
38+
PR c++/119175
39+
* g++.dg/cpp2a/concepts-lambda23.C: New test.
40+
41+
2025-04-10 Iain Sandoe <[email protected]>
42+
43+
* lib/cobol.exp: Add libquadmath paths.
44+
45+
2025-04-10 Richard Sandiford <[email protected]>
46+
47+
PR tree-optimization/119399
48+
* gcc.dg/vect/pr119399.c: New test.
49+
50+
2025-04-10 Kito Cheng <[email protected]>
51+
52+
* gcc.target/riscv/rvv/base/abi-callee-saved-1-fixed-1.c: Include local
53+
riscv_vector.h.
54+
* gcc.target/riscv/rvv/base/abi-callee-saved-1-fixed-2.c: Ditto.
55+
* gcc.target/riscv/rvv/base/abi-callee-saved-1-save-restore.c: Ditto.
56+
* gcc.target/riscv/rvv/base/abi-callee-saved-1-zcmp.c: Ditto.
57+
* gcc.target/riscv/rvv/base/abi-callee-saved-1.c: Ditto.
58+
* gcc.target/riscv/rvv/base/abi-callee-saved-2-save-restore.c: Ditto.
59+
* gcc.target/riscv/rvv/base/abi-callee-saved-2-zcmp.c: Ditto.
60+
* gcc.target/riscv/rvv/base/abi-callee-saved-2.c: Ditto.
61+
* gcc.target/riscv/rvv/base/bug-10-2.c: Ditto.
62+
* gcc.target/riscv/rvv/base/bug-10.c: Ditto.
63+
* gcc.target/riscv/rvv/base/bug-7.c: Ditto.
64+
* gcc.target/riscv/rvv/base/bug-8.c: Ditto.
65+
* gcc.target/riscv/rvv/base/bug-9.c: Ditto.
66+
* gcc.target/riscv/rvv/base/pr110943.c: Ditto.
67+
* gcc.target/riscv/rvv/base/pr112431-21.c: Ditto.
68+
* gcc.target/riscv/rvv/base/pr114639-1.c: Ditto.
69+
* gcc.target/riscv/rvv/base/pr115068.c: Ditto.
70+
* gcc.target/riscv/rvv/base/pr117286.c: Ditto.
71+
* gcc.target/riscv/rvv/base/pr117544.c: Ditto.
72+
* gcc.target/riscv/rvv/base/pr117955.c: Ditto.
73+
* gcc.target/riscv/rvv/base/pr118872.c: Ditto.
74+
* gcc.target/riscv/rvv/base/vlmul_ext-1.c: Ditto.
75+
* gcc.target/riscv/rvv/base/vssubu-1.c: Ditto.
76+
* gcc.target/riscv/rvv/base/vssubu-2.c: Ditto.
77+
* gcc.target/riscv/rvv/base/vwaddsub-1.c: Ditto.
78+
* gcc.target/riscv/rvv/vsetvl/pr111234.c: Ditto.
79+
* gcc.target/riscv/rvv/vsetvl/pr115214.c: Ditto.
80+
* gcc.target/riscv/rvv/vsetvl/vsetvl-24.c: Ditto.
81+
* gcc.target/riscv/rvv/vsetvl/vsetvl_bug-3.c: Ditto.
82+
* gcc.target/riscv/rvv/vsetvl/vsetvl_bug-4.c: Ditto.
83+
* gcc.target/riscv/rvv/xtheadvector/pr116591.c: Ditto.
84+
* gcc.target/riscv/rvv/xtheadvector/pr116592.c: Ditto.
85+
* gcc.target/riscv/rvv/xtheadvector/pr118357.c: Ditto.
86+
* gcc.target/riscv/rvv/xtheadvector/vsext.c: Ditto.
87+
* gcc.target/riscv/rvv/xtheadvector/vzext.c: Ditto.
88+
189
2025-04-09 Patrick Palka <[email protected]>
290

391
PR c++/119574

libbacktrace/ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2025-04-10 John David Anglin <[email protected]>
2+
3+
* fileline.c (hpux_get_executable_path): New.
4+
(fileline_initialize): Add pass to get hpux executable path.
5+
16
2025-04-09 Richard Biener <[email protected]>
27

38
PR bootstrap/119680

libgcobol/ChangeLog

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
2025-04-10 Iain Sandoe <[email protected]>
2+
3+
* configure.tgt: Enable for x86_64 Darwin.
4+
5+
2025-04-10 Iain Sandoe <[email protected]>
6+
7+
PR cobol/119244
8+
* Makefile.am: Add support for libquadmath.
9+
* Makefile.in: Regenerate.
10+
* acinclude.m4: Add support for libquadmath.
11+
* config.h.in: Regenerate.
12+
* configure: Regenerate.
13+
* configure.ac: Configure libquadmath support.
14+
* gmath.cc: Use GCOB_FP128 to represent the configured
15+
128b floating point type. Use FP128_FUNC to represent
16+
the naming of intrinsics in the configure 128b floating
17+
point type. Render literals with GCOB_FP128_LITERAL.
18+
* intrinsic.cc: Likewise.
19+
* libgcobol.cc: Likewise.
20+
* libgcobol.h: Likewise.
21+
* libgcobol-fp.h: New file.
22+
* gfileio.cc: Include libgcobol-fp.h.
23+
* libgcobol.spec.in: Add libquadmath configure output.
24+
125
2025-04-09 Bob Dubner <[email protected]>
226

327
PR cobol/119682

libgomp/ChangeLog

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
2025-04-10 Richard Sandiford <[email protected]>
2+
3+
* testsuite/libgomp.c-target/aarch64/firstprivate.c: Add +sve pragma.
4+
* testsuite/libgomp.c-target/aarch64/lastprivate.c: Likewise.
5+
* testsuite/libgomp.c-target/aarch64/private.c: Likewise.
6+
* testsuite/libgomp.c-target/aarch64/shared.c: Likewise.
7+
* testsuite/libgomp.c-target/aarch64/simd-aligned.c: Likewise.
8+
* testsuite/libgomp.c-target/aarch64/simd-nontemporal.c: Likewise.
9+
* testsuite/libgomp.c-target/aarch64/threadprivate.c: Likewise.
10+
* testsuite/libgomp.c-target/aarch64/udr-sve.c: Add an -march option.
11+
(for_reduction): Use "+=" in the reduction loop.
12+
113
2025-04-08 Tobias Burnus <[email protected]>
214

315
PR middle-end/119662

libstdc++-v3/ChangeLog

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
2025-04-10 Jonathan Wakely <[email protected]>
2+
3+
* include/bits/version.def (constrained_equality): Only define
4+
as 202411 for C++23 and later, use 202403 for C++20.
5+
* include/bits/version.h: Regenerate.
6+
* testsuite/20_util/expected/equality_constrained.cc: Remove
7+
TODO comment.
8+
9+
2025-04-10 John David Anglin <[email protected]>
10+
11+
* config/os/hpux/os_defines.h: Remove _GLIBCXX_USE_LONG_LONG
12+
define.
13+
114
2025-04-09 Patrick Palka <[email protected]>
215

316
PR libstdc++/115046

0 commit comments

Comments
 (0)