Daily bump.

This commit is contained in:
GCC Administrator 2025-10-12 00:17:20 +00:00
parent 66a5376706
commit 767a93886a
7 changed files with 118 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2025-10-11 Ben Boeckel <ben.boeckel@kitware.com>
* config-ml.in: Update patch email address.
* symlink-tree: Ditto.
2025-10-09 Prathamesh Kulkarni <prathameshk@nvidia.com>
Matthew Malcolmson <mmalcolmson@nvidia.com>

View File

@ -1,3 +1,36 @@
2025-10-11 Bohan Lei <garthlei@linux.alibaba.com>
PR target/119587
* config/riscv/thead.md (*th_memidx_operand): New splitter.
2025-10-11 Georg-Johann Lay <avr@gjlay.de>
* coretypes.h (enum artificial_rodata): New enum type.
* doc/tm.texi: Rebuild.
* doc/tm.texi.in (TARGET_ADDR_SPACE_FOR_ARTIFICIAL_RODATA):
New hook.
* target.def (addr_sapce.for_artificial_rodata): New DEFHOOK.
* targhooks.cc (default_addr_space_convert): New function.
* targhooks.h (default_addr_space_convert): New prototype.
* tree-switch-conversion.cc (build_one_array) <value_type>:
Set type_quals address-space according to
targetm.addr_space.for_artificial_rodata().
* config/avr/avr.cc (avr_rodata_in_flash_p): Move up.
(TARGET_ADDR_SPACE_FOR_ARTIFICIAL_RODATA): Define to...
(avr_addr_space_for_artificial_rodata): ...this new function.
* common/config/avr/avr-common.cc (avr_option_optimization_table):
Adjust -ftree-switch-conversion comment.
2025-10-11 Austin Law <austinklaw@gmail.com>
* config/riscv/sync.md (lrsc_atomic_fetch_<atomic_optab><mode>):
Adjust operand predicate/constraint to allow simm12 operands
where valid. Adjust output template accordingly.
(subword_atomic_fech_strong_<atomic_optab>): Likewise.
(subword_atomic_fetch_strong_nand): Likewise.
(subword_atomic_exchange_strong): Likewise.
(subword_atomic_cas_strong): Likewise.
2025-10-10 David Faust <david.faust@oracle.com>
PR target/122141

View File

@ -1 +1 @@
20251011
20251012

View File

@ -1,3 +1,9 @@
2025-10-11 Harald Anlauf <anlauf@gmx.de>
PR fortran/50377
PR fortran/122257
* resolve.cc (resolve_actual_arglist): Initialize variable.
2025-10-10 Harald Anlauf <anlauf@gmx.de>
PR fortran/50377

View File

@ -1,3 +1,58 @@
2025-10-11 Gaius Mulley <gaiusmod2@gmail.com>
PR modula2/122241
* Make-lang.in (GM2_C_OBJS): Add m2/gm2-gcc/m2spellcheck.o.
(GM2-COMP-BOOT-DEFS): Add M2StackSpell.def.
(GM2-COMP-BOOT-MODS): Add M2StackSpell.mod.
(GM2-GCC-DEFS): Add m2spellcheck.def.
(GM2-COMP-DEFS): Add M2StackSpell.def.
(GM2-COMP-MODS): Add M2StackSpell.mod.
* gm2-compiler/M2Base.mod (CheckCompatible): Add comments.
* gm2-compiler/M2MetaError.mod (importHint): New field.
(exportHint): Ditto.
(withStackHint): Ditto.
* gm2-compiler/M2Quads.mod (M2StackSpell): Import.
(BuildProcedureCall): Add spell check specifier when
encountering an unknown symbol.
(CheckProcedureParameters): Ditto.
(CheckParameter): Ditto.
(DescribeType): Ditto.
(GetQualidentImport): Ditto.
(BuildValFunction): Ditto.
(BuildCastFunction): Ditto.
(BuildConvertFunction): Ditto.
(ExpectingParameterType): Ditto.
(ExpectingVariableType): Ditto.
(BuildDesignatorPointer): Ditto.
(BuildEmptySet): Ditto.
(CheckVariableOrConstantOrProcedure): Ditto.
* gm2-compiler/P2SymBuild.mod (BuildType): Add comment.
* gm2-compiler/P3Build.bnf (SubDesignator): Reimplement.
* gm2-compiler/P3SymBuild.mod (P3StartBuildDefModule): Add
M2StackSpell.Push.
(P3StartBuildProgModule): Ditto.
(P3StartBuildImpModule): Ditto.
(StartBuildInnerModule): Ditto.
(StartBuildProcedure): Ditto.
(P3EndBuildDefModule): Add M2StackSpell.Pop.
(P3EndBuildImpModule): Ditto.
(P3EndBuildProgModule): Ditto.
(EndBuildInnerModule): Ditto.
(EndBuildProcedure): Ditto.
(BuildProcedureHeading): Ditto.
(EndBuildForward): Ditto.
* gm2-compiler/SymbolTable.mod (RequestSym): Reformat.
* gm2-gcc/init.cc (_M2_M2StackSpell_init): New prototype.
(init_PerCompilationInit): Call _M2_M2StackSpell_init.
* gm2-libs/DynamicStrings.def (RemoveWhitePrefix): Correct
comment.
* gm2-libs/DynamicStrings.mod (RemoveWhitePrefix): Ditto.
* gm2-compiler/M2StackSpell.def: New file.
* gm2-compiler/M2StackSpell.mod: New file.
* gm2-gcc/m2spellcheck.cc: New file.
* gm2-gcc/m2spellcheck.def: New file.
* gm2-gcc/m2spellcheck.h: New file.
2025-10-02 Gaius Mulley <gaiusmod2@gmail.com>
PR modula2/122009

View File

@ -1,3 +1,16 @@
2025-10-11 Gaius Mulley <gaiusmod2@gmail.com>
* gm2/iso/fail/badfield.mod: New test.
* gm2/iso/fail/badfield2.mod: New test.
* gm2/iso/fail/badprocedure.mod: New test.
* gm2/iso/fail/badprocedure2.mod: New test.
* gm2/iso/fail/badset4.mod: New test.
2025-10-11 Bohan Lei <garthlei@linux.alibaba.com>
PR target/119587
* gcc.target/riscv/xtheadmemidx-bug.c: New test.
2025-10-10 Harald Anlauf <anlauf@gmx.de>
PR fortran/50377

View File

@ -1,3 +1,8 @@
2025-10-11 Gerald Pfeifer <gerald@pfeifer.com>
* doc/xml/manual/build_hacking.xml: Update Autoconf manual link.
* doc/html/manual/appendix_porting.html: Regenerate.
2025-10-10 Jonathan Wakely <jwakely@redhat.com>
PR libstdc++/122172