Skip to content

Commit 6b36b65

Browse files
author
GCC Administrator
committed
Daily bump.
1 parent 70bc553 commit 6b36b65

File tree

7 files changed

+137
-1
lines changed

7 files changed

+137
-1
lines changed

ChangeLog

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2025-03-23 Iain Sandoe <[email protected]>
2+
3+
PR libitm/88319
4+
* Makefile.in: Regenerate.
5+
* Makefile.tpl: Add CXX_FOR_TARGET to NORMAL_TARGET_EXPORTS.
6+
7+
2025-03-23 James K. Lowden <[email protected]>
8+
9+
* MAINTAINERS: Add myself.
10+
111
2025-03-17 Arthur Cohen <[email protected]>
212

313
* .gitignore: Add libgrust target folders to the ignore list.

gcc/ChangeLog

+82
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,85 @@
1+
2025-03-23 Sandra Loosemore <[email protected]>
2+
3+
PR other/42270
4+
* doc/extend.texi (Nonlocal Gotos): Group with other built-ins
5+
sections.
6+
(Constructing Calls): Likewise.
7+
(Pragmas): Move earlier in the section, before the built-ins docs.
8+
(Thread-Local): Likewise.
9+
(OpenMP): Likewise.
10+
(OpenACC): Likewise.
11+
12+
2025-03-23 Sandra Loosemore <[email protected]>
13+
14+
PR other/42270
15+
* doc/extend.texi (Syntax Extensions): New section.
16+
(Statement Exprs): Make it a subsection of the above.
17+
(Local Labels): Likewise.
18+
(Labels as Values): Likewise.
19+
(Nested Functions): Likewise.
20+
(Typeof): Likewise.
21+
(Offsetof): Likewise.
22+
(Alignment): Likewise.
23+
(Incomplete Enums): Likewise.
24+
(Variadic Macros): Likewise.
25+
(Conditionals): Likewise.
26+
(Case Ranges): Likewise.
27+
(Mixed Labels and Declarations): Likewise.
28+
(C++ Comments): Likewise.
29+
(Escaped Newlines): Likewise.
30+
(Hex Floats): Likewise.
31+
(Binary constants): Likewise.
32+
(Dollar Signs): Likewise.
33+
(Character Escapes): Likewise.
34+
(Alternate Keywords): Likewise.
35+
(Function Names): Likewise.
36+
(Semantic Extensions): New section.
37+
(Function Prototypes): Make it a subsection of the above.
38+
(Pointer Arith): Likewise.
39+
(Variadic Pointer Args): Likewise.
40+
(Pointers to Arrays): Likewise.
41+
(Const and Volatile Functions): Likewise.
42+
43+
2025-03-23 Sandra Loosemore <[email protected]>
44+
45+
PR other/42270
46+
* doc/extend.texi (Aggregate Types): New section.
47+
(Variable Length): Make it a subsection of the above.
48+
(Zero Length): Likewise.
49+
(Empty Structures): Likewise.
50+
(Flexible Array Members in Unions): Likewise.
51+
(Flexible Array Members alone in Structures): Likewise.
52+
(Unnamed Fields): Likewise.
53+
(Cast to Union): Likewise.
54+
(Subscripting): Likewise.
55+
(Initializers): Likewise.
56+
(Compound Literals): Likewise.
57+
(Designated Inits): Likewise.
58+
59+
2025-03-23 Sandra Loosemore <[email protected]>
60+
61+
PR other/42270
62+
* doc/extend.texi (Additional Numeric Types): New section.
63+
(__int128): Make it a subsection of the above.
64+
(Long Long): Likewise.
65+
(Complex): Likewise.
66+
(Floating Types): Likewise.
67+
(Half-Precision): Likewise.
68+
(Decimal Float): Likewise.
69+
(Fixed-Point): Likewise.
70+
71+
2025-03-23 Georg-Johann Lay <[email protected]>
72+
73+
* config/avr/avr-mcus.def: Add AVR32SD20, AVR32SD28, AVR32SD32,
74+
AVR64SD28, AVR64SD32, AVR64SD48.
75+
* doc/avr-mmcu.texi: Rebuild.
76+
77+
2025-03-23 Georg-Johann Lay <[email protected]>
78+
79+
* doc/invoke.texi (AVR Optimization Options)
80+
<-maccumulate-args>: Refer to -fdefer-pop.
81+
<-muse-nonzero-bits>: Re-formulate what the option does.
82+
183
2025-03-22 Georg-Johann Lay <[email protected]>
284

385
* config/avr/avr.cc (avr_option_override): Use

gcc/DATESTAMP

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20250323
1+
20250324

gcc/cp/ChangeLog

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
2025-03-23 Nathaniel Shead <[email protected]>
2+
3+
PR c++/119154
4+
* decl2.cc (vague_linkage_p): Revert gnu_linkage handling.
5+
* module.cc (importer_interface): New enumeration.
6+
(get_importer_interface): New function.
7+
(trees_out::core_bools): Use it to determine interface.
8+
(trees_in::is_matching_decl): Propagate gnu_inline handling onto
9+
existing forward declarations.
10+
(trees_in::read_var_def): Also note explicit instantiation
11+
definitions of variable templates to be emitted.
12+
113
2025-03-22 Patrick Palka <[email protected]>
214

315
PR c++/119379

gcc/d/ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2025-03-23 Iain Buclaw <[email protected]>
2+
3+
PR d/117621
4+
* types.cc (finish_aggregate_type): Propagate TYPE_PACKED to variants.
5+
16
2025-03-22 Iain Buclaw <[email protected]>
27

38
* dmd/MERGE: Merge upstream dmd 032e24446b.

gcc/testsuite/ChangeLog

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
2025-03-23 Nathaniel Shead <[email protected]>
2+
3+
PR c++/119154
4+
* g++.dg/modules/pr119154_a.C: Move to...
5+
* g++.dg/modules/gnu-inline-1_a.C: ...here, and add decl.
6+
* g++.dg/modules/pr119154_b.C: Move to...
7+
* g++.dg/modules/gnu-inline-1_b.C: here, and add check.
8+
* g++.dg/modules/gnu-inline-1_c.C: New test.
9+
* g++.dg/modules/gnu-inline-1_d.C: New test.
10+
* g++.dg/modules/gnu-inline-2_a.C: New test.
11+
* g++.dg/modules/gnu-inline-2_b.C: New test.
12+
* g++.dg/modules/extern-tpl-3_a.C: New test.
13+
* g++.dg/modules/extern-tpl-3_b.C: New test.
14+
* g++.dg/modules/extern-tpl-4_a.H: New test.
15+
* g++.dg/modules/extern-tpl-4_b.C: New test.
16+
* g++.dg/modules/extern-tpl-4_c.C: New test.
17+
18+
2025-03-23 Iain Buclaw <[email protected]>
19+
20+
PR d/117621
21+
* gdc.dg/pr117621.d: New test.
22+
123
2025-03-22 Georg-Johann Lay <[email protected]>
224

325
PR target/119421

libgcobol/ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2025-03-23 Bob Dubner <[email protected]>
2+
3+
* Makefile.am: Incorporate AM_CXXFLAGS = $(CXXFLAGS_FOR_TARGET).
4+
* Makefile.in: Regenerated.
5+
16
2025-03-20 Iain Sandoe <[email protected]>
27

38
* Makefile.am: Use LIBICONV.

0 commit comments

Comments
 (0)