Skip to content

Commit 9361966

Browse files
author
GCC Administrator
committed
Daily bump.
1 parent de3cbcf commit 9361966

File tree

11 files changed

+245
-1
lines changed

11 files changed

+245
-1
lines changed

gcc/ChangeLog

+65
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,68 @@
1+
2025-05-15 Andrew MacLeod <amacleod@redhat.com>
2+
3+
PR tree-optimization/116546
4+
* range-op.cc (operator_bitwise_and::op1_range): Utilize bitmask
5+
from the LHS to improve op1's bitmask.
6+
7+
2025-05-15 Andrew MacLeod <amacleod@redhat.com>
8+
9+
PR tree-optimization/116546
10+
* value-range.cc (irange::intersect_bitmask): Allow unknown
11+
bitmasks to be processed.
12+
13+
2025-05-15 Andrew MacLeod <amacleod@redhat.com>
14+
15+
PR tree-optimization/116546
16+
* value-range.cc (irange_bitmask::irange_bitmask): Include
17+
leading ones in the bitmask.
18+
19+
2025-05-15 Andrew MacLeod <amacleod@redhat.com>
20+
21+
* value-range.cc (irange_bitmask::irange_bitmask): Rename from
22+
get_bitmask_from_range and tweak.
23+
(prange::set): Use new constructor.
24+
(prange::intersect): Use new constructor.
25+
(irange::get_bitmask): Likewise.
26+
* value-range.h (irange_bitmask): New constructor prototype.
27+
28+
2025-05-15 Andrew MacLeod <amacleod@redhat.com>
29+
30+
PR tree-optimization/120277
31+
* range-op-ptr.cc (operator_cast::fold_range): Check if the cast
32+
if UNDEFINED before setting bounds.
33+
34+
2025-05-15 Jeff Law <jlaw@ventanamicro.com>
35+
36+
PR target/120223
37+
* config/riscv/riscv.cc (synthesize_ior_xor): XTHEADBS does not have
38+
single bit manipulations.
39+
40+
2025-05-15 Alexander Monakov <amonakov@ispras.ru>
41+
42+
* tree-cfg.cc (verify_gimple_assign_unary): Accept only
43+
COMPLEX_TYPE for CONJ_EXPR.
44+
45+
2025-05-15 Andrew Pinski <quic_apinski@quicinc.com>
46+
47+
* fold-const.cc (tree_swap_operands_p): Put ADDR_EXPR last
48+
instead of just is_gimple_invariant_address ones.
49+
* match.pd (`a ptr+ b !=\== ADDR`, `ADDR !=/== ssa_name`):
50+
Move the ADDR to the last operand. Update comment.
51+
52+
2025-05-15 Richard Biener <rguenther@suse.de>
53+
54+
* tree-vectorizer.cc (vect_transform_loops): When diagnosing
55+
a vectorized loop indicate whether we vectorized an epilogue,
56+
whether we used masked vectors and what unroll factor was
57+
used.
58+
59+
2025-05-15 Richard Biener <rguenther@suse.de>
60+
61+
* config/i386/i386.cc (ix86_vector_costs::finish_cost):
62+
Do not suggest a first epilogue mode for AVX512 sized
63+
main loops with X86_TUNE_AVX512_TWO_EPILOGUES as that
64+
interferes with using a masked epilogue.
65+
166
2025-05-14 Richard Biener <rguenther@suse.de>
267

368
* tree-vectorizer.h (record_stmt_cost): Remove mixed

gcc/DATESTAMP

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20250515
1+
20250516

gcc/c-family/ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2025-05-15 Jason Merrill <jason@redhat.com>
2+
3+
* c-opts.cc (c_common_post_options): Set flag_coroutines.
4+
(set_std_cxx20, set_std_cxx23, set_std_cxx26): Not here.
5+
16
2025-05-03 Jason Merrill <jason@redhat.com>
27

38
* c-opts.cc (c_common_post_options): Let plain -Wabi warn

gcc/cp/ChangeLog

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
2025-05-15 Patrick Palka <ppalka@redhat.com>
2+
3+
PR c++/120161
4+
* pt.cc (unify) <case RECORD_TYPE>: When comparing specializations
5+
of a non-primary template, still perform a type comparison.
6+
7+
2025-05-15 Jason Merrill <jason@redhat.com>
8+
9+
* module.cc (trees_out::lang_decl_bools): Stream implicit_constexpr.
10+
(trees_in::lang_decl_bools): Likewise.
11+
(trees_in::is_matching_decl): Check it.
12+
13+
2025-05-15 Jason Merrill <jason@redhat.com>
14+
15+
PR c++/99599
16+
* pt.cc (conversion_may_instantiate_p): Make sure
17+
classes are complete.
18+
119
2025-05-14 Ville Voutilainen <ville.voutilainen@gmail.com>
220

321
* cp-gimplify.cc (cp_fold): Remove a remnant comment.

gcc/fortran/ChangeLog

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2025-05-15 Harald Anlauf <anlauf@gmx.de>
2+
3+
PR fortran/85750
4+
* resolve.cc (resolve_symbol): Reorder conditions when to apply
5+
default-initializers.
6+
7+
2025-05-15 Tobias Burnus <tburnus@baylibre.com>
8+
9+
* trans-openmp.cc (gfc_omp_deep_mapping_do): Handle SSA_NAME if
10+
a def_stmt is available.
11+
112
2025-05-14 Thomas Koenig <tkoenig@gcc.gnu.org>
213

314
PR fortran/120139

gcc/po/ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-05-15 Joseph Myers <josmyers@redhat.com>
2+
3+
* zh_CN.po: Update.
4+
15
2025-05-14 Joseph Myers <josmyers@redhat.com>
26

37
* sv.po: Update.

gcc/testsuite/ChangeLog

+84
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,87 @@
1+
2025-05-15 Jason Merrill <jason@redhat.com>
2+
3+
* g++.dg/coroutines/co-await-syntax-09-convert.C: Add -fcoroutines.
4+
* g++.dg/coroutines/co-await-syntax-10.C
5+
* g++.dg/coroutines/co-await-syntax-11.C
6+
* g++.dg/coroutines/co-await-void_type.C
7+
* g++.dg/coroutines/co-return-warning-1.C
8+
* g++.dg/coroutines/ramp-return-a.C
9+
* g++.dg/coroutines/ramp-return-c.C: Likewise.
10+
* g++.dg/coroutines/coroutines.exp: Removed.
11+
* lib/g++-dg.exp: Start at C++20 for coroutines/
12+
13+
2025-05-15 Harald Anlauf <anlauf@gmx.de>
14+
15+
PR fortran/85750
16+
* gfortran.dg/alloc_comp_auto_array_3.f90: Adjust scan counts.
17+
* gfortran.dg/alloc_comp_class_3.f03: Remove bogus warnings.
18+
* gfortran.dg/alloc_comp_class_4.f03: Likewise.
19+
* gfortran.dg/allocate_with_source_14.f03: Adjust scan count.
20+
* gfortran.dg/derived_constructor_comps_6.f90: Likewise.
21+
* gfortran.dg/derived_result_5.f90: New test.
22+
23+
2025-05-15 Robert Dubner <rdubner@symas.com>
24+
25+
PR cobol/120251
26+
* cobol.dg/group1/check_88.cob: One final regex "." instead of "ß"
27+
28+
2025-05-15 Andrew MacLeod <amacleod@redhat.com>
29+
30+
PR tree-optimization/116546
31+
* gcc.dg/pr116546.c: New.
32+
33+
2025-05-15 Andrew MacLeod <amacleod@redhat.com>
34+
35+
PR tree-optimization/120277
36+
* gcc.dg/pr120277.c: New.
37+
38+
2025-05-15 Robert Dubner <rdubner@symas.com>
39+
40+
PR cobol/120251
41+
* cobol.dg/group1/check_88.cob: Ignore characters above 0x80.
42+
* cobol.dg/group2/ALLOCATE_Rule_8_OPTION_INITIALIZE_with_figconst.cob:
43+
Output HIGH-VALUE as hex, rather than as characters.
44+
* cobol.dg/group2/ALLOCATE_Rule_8_OPTION_INITIALIZE_with_figconst.out:
45+
Likewise.
46+
* cobol.dg/group2/INSPECT_CONVERTING_TO_figurative_constants.cob: Typo.
47+
* cobol.dg/group2/INSPECT_CONVERTING_TO_figurative_constants.out: Likewise.
48+
* cobol.dg/group2/INSPECT_ISO_Example_1.cob: Likewise.
49+
* cobol.dg/group2/INSPECT_ISO_Example_2.cob: Likewise.
50+
* cobol.dg/group2/INSPECT_ISO_Example_3.cob: Likewise.
51+
* cobol.dg/group2/INSPECT_ISO_Example_4.cob: Likewise.
52+
* cobol.dg/group2/INSPECT_ISO_Example_5-f.cob: Likewise.
53+
* cobol.dg/group2/INSPECT_ISO_Example_6.cob: Likewise.
54+
* cobol.dg/group2/INSPECT_ISO_Example_7.cob: Likewise.
55+
* cobol.dg/group2/Multiple_INDEXED_BY_variables_with_the_same_name.cob: New test.
56+
* cobol.dg/group2/Multiple_INDEXED_BY_variables_with_the_same_name.out: New test.
57+
58+
2025-05-15 Jeff Law <jlaw@ventanamicro.com>
59+
60+
PR target/120223
61+
* gcc.target/riscv/pr120223.c: New test.
62+
63+
2025-05-15 Patrick Palka <ppalka@redhat.com>
64+
65+
PR c++/120161
66+
* g++.dg/template/unify13.C: New test.
67+
68+
2025-05-15 Jason Merrill <jason@redhat.com>
69+
70+
* lib/g++-dg.exp (g++-std-flags): Factor out of g++-dg-runtest.
71+
* g++.dg/modules/modules.exp: Use it instead of a copy.
72+
73+
2025-05-15 Richard Biener <rguenther@suse.de>
74+
75+
* gcc.target/i386/pr110310.c: Adjust.
76+
77+
2025-05-15 Richard Biener <rguenther@suse.de>
78+
79+
* gcc.target/i386/vect-epilogues-1.c: New testcase.
80+
* gcc.target/i386/vect-epilogues-2.c: Likewise.
81+
* gcc.target/i386/vect-epilogues-3.c: Likewise.
82+
* gcc.target/i386/vect-epilogues-4.c: Likewise.
83+
* gcc.target/i386/vect-epilogues-5.c: Likewise.
84+
185
2025-05-14 Simon Martin <simon@nasilyan.com>
286

387
PR c++/120126

libcpp/po/ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-05-15 Joseph Myers <josmyers@redhat.com>
2+
3+
* zh_CN.po: Update.
4+
15
2025-05-14 Joseph Myers <josmyers@redhat.com>
26

37
* es.po: Update.

libgcc/config/libbid/ChangeLog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2025-05-15 liuhongt <hongtao.liu@intel.com>
2+
3+
* bid128_string.c (MIN_DIGITS): New macro.
4+
(bid128_from_string): Bug fix. Conversion from very long input
5+
string to decimal.
6+
17
2024-11-14 Christophe Lyon <christophe.lyon@linaro.org>
28

39
PR libgcc/117537

libgomp/ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-05-15 Tobias Burnus <tburnus@baylibre.com>
2+
3+
* testsuite/libgomp.fortran/alloc-comp-4.f90: New test.
4+
15
2025-05-14 Tobias Burnus <tburnus@baylibre.com>
26

37
* target.c (gomp_attach_pointer): Return bool; accept additional

libstdc++-v3/ChangeLog

+43
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,46 @@
1+
2025-05-15 Luc Grosheintz <luc.grosheintz@gmail.com>
2+
3+
* include/std/mdspan: Implement the mandate for extents as
4+
signed or unsigned integer and not any interal type. Remove
5+
leading underscores from names in static_assert message.
6+
* testsuite/23_containers/mdspan/extents/class_mandates_neg.cc:
7+
Check that extents<char,...> and extents<bool,...> are invalid.
8+
Adjust dg-prune-output pattern.
9+
* testsuite/23_containers/mdspan/extents/misc.cc: Update
10+
tests to avoid `char` and `bool` as IndexType.
11+
12+
2025-05-15 Jonathan Wakely <jwakely@redhat.com>
13+
14+
PR libstdc++/120190
15+
* include/std/format (format_kind): Adjust primary template to
16+
not depend on itself.
17+
* testsuite/std/format/ranges/format_kind_neg.cc: Adjust
18+
expected errors. Check more invalid specializations.
19+
20+
2025-05-15 Jonathan Wakely <jwakely@redhat.com>
21+
22+
* include/std/complex (arg(T)): Use __builtin_signbit instead of
23+
std::signbit.
24+
25+
2025-05-15 Jonathan Wakely <jwakely@redhat.com>
26+
27+
PR libstdc++/120235
28+
* doc/html/*: Regenerate.
29+
* doc/xml/manual/evolution.xml: Document deprecation.
30+
* include/std/complex: Replace references to TR1 subclauses with
31+
corresponding C++11 subclauses.
32+
(fabs): Add deprecated attribute.
33+
* testsuite/26_numerics/complex/fabs_neg.cc: New test.
34+
35+
2025-05-15 Jason Merrill <jason@redhat.com>
36+
37+
* testsuite/lib/libstdc++.exp: Add -Wabi.
38+
39+
2025-05-15 Tomasz Kamiński <tkaminsk@redhat.com>
40+
41+
PR libstdc++/119246
42+
* include/std/format: Updated check for _GLIBCXX_FORMAT_F128.
43+
144
2025-05-14 Tomasz Kamiński <tkaminsk@redhat.com>
245

346
PR libstdc++/119125

0 commit comments

Comments
 (0)