mirror of git://gcc.gnu.org/git/gcc.git
Daily bump.
This commit is contained in:
parent
33b6b79197
commit
4d68c7f7b5
|
|
@ -1,3 +1,26 @@
|
||||||
|
2023-04-30 Roger Sayle <roger@nextmovesoftware.com>
|
||||||
|
|
||||||
|
* config/stormy16/stormy16.md (neghi2): Rewrite pattern using
|
||||||
|
inc to avoid clobbering the carry flag.
|
||||||
|
|
||||||
|
2023-04-30 Andrew Pinski <apinski@marvell.com>
|
||||||
|
|
||||||
|
* match.pd: Add patterns for "a != 0 ? FUNC(a) : CST"
|
||||||
|
for FUNC of POPCOUNT BSWAP FFS PARITY CLZ and CTZ.
|
||||||
|
|
||||||
|
2023-04-30 Andrew Pinski <apinski@marvell.com>
|
||||||
|
|
||||||
|
* tree-ssa-phiopt.cc (empty_bb_or_one_feeding_into_p):
|
||||||
|
Allow some builtin/internal function calls which
|
||||||
|
are known not to trap/throw.
|
||||||
|
(phiopt_worker::match_simplify_replacement):
|
||||||
|
Use name instead of getting the lhs again.
|
||||||
|
|
||||||
|
2023-04-30 Joakim Nohlgård <joakim@nohlgard.se>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
* configure.ac: Use ld -r in the check for HAVE_LD_RO_RW_SECTION_MIXING
|
||||||
|
|
||||||
2023-04-29 Hans-Peter Nilsson <hp@axis.com>
|
2023-04-29 Hans-Peter Nilsson <hp@axis.com>
|
||||||
|
|
||||||
* reload1.cc (emit_insn_if_valid_for_reload_1): Rename from
|
* reload1.cc (emit_insn_if_valid_for_reload_1): Rename from
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
20230430
|
20230501
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,14 @@
|
||||||
|
2023-04-30 Andrew Pinski <apinski@marvell.com>
|
||||||
|
|
||||||
|
* c-typeck.cc (process_init_element): Print out array type
|
||||||
|
for excessive elements.
|
||||||
|
|
||||||
|
2023-04-30 Andrew Pinski <apinski@marvell.com>
|
||||||
|
|
||||||
|
PR c/107926
|
||||||
|
* c-typeck.cc (process_init_element): Move the check
|
||||||
|
for string cst until after the error message.
|
||||||
|
|
||||||
2023-04-28 Eugene Rozenfeld <erozen@microsoft.com>
|
2023-04-28 Eugene Rozenfeld <erozen@microsoft.com>
|
||||||
|
|
||||||
* Make-lang.in: Merge perf data collected when compiling cc1 and runtime libraries
|
* Make-lang.in: Merge perf data collected when compiling cc1 and runtime libraries
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,19 @@
|
||||||
|
2023-04-30 Gaius Mulley <gaiusmod2@gmail.com>
|
||||||
|
|
||||||
|
* gm2-compiler/SymbolTable.mod (ConstLitPoolEntry): New
|
||||||
|
pointer to record.
|
||||||
|
(ConstLitSym): New field RangeError.
|
||||||
|
(ConstLitPoolTree): New SymbolTree representing name to
|
||||||
|
index.
|
||||||
|
(ConstLitArray): New dynamic array containing pointers
|
||||||
|
to a ConstLitPoolEntry.
|
||||||
|
(CreateConstLit): New procedure function.
|
||||||
|
(LookupConstLitPoolEntry): New procedure function.
|
||||||
|
(AddConstLitPoolEntry): New procedure function.
|
||||||
|
(MakeConstLit): Re-implemented to check the constant lit
|
||||||
|
pool before calling CreateConstLit.
|
||||||
|
* m2.flex: Add ability to decode binary constant literals.
|
||||||
|
|
||||||
2023-04-26 Gaius Mulley <gaiusmod2@gmail.com>
|
2023-04-26 Gaius Mulley <gaiusmod2@gmail.com>
|
||||||
|
|
||||||
PR modula2/108121
|
PR modula2/108121
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,47 @@
|
||||||
|
2023-04-30 Jeff Law <jlaw@ventanamicro>
|
||||||
|
|
||||||
|
Revert:
|
||||||
|
2023-04-30 Longjun Luo <luolongjuna@gmail.com>
|
||||||
|
|
||||||
|
* gcc.dg/builtin-redefine.c: Test for redefintion warnings
|
||||||
|
for __LINE__.
|
||||||
|
* gcc.dg/builtin-redefine-1.c: New test.
|
||||||
|
|
||||||
|
2023-04-30 Roger Sayle <roger@nextmovesoftware.com>
|
||||||
|
|
||||||
|
* gcc.target/xstormy16/neghi2.c: Update expected implementation.
|
||||||
|
|
||||||
|
2023-04-30 Andrew Pinski <apinski@marvell.com>
|
||||||
|
|
||||||
|
* gcc.dg/init-bad-1.c: Update error message.
|
||||||
|
* gcc.dg/init-bad-2.c: Likewise.
|
||||||
|
* gcc.dg/init-bad-3.c: Likewise.
|
||||||
|
* gcc.dg/init-excess-3.c: Likewise.
|
||||||
|
* gcc.dg/pr61096-1.c: Likewise.
|
||||||
|
|
||||||
|
2023-04-30 Andrew Pinski <apinski@marvell.com>
|
||||||
|
|
||||||
|
PR c/107926
|
||||||
|
* gcc.dg/init-excess-3.c: New test.
|
||||||
|
|
||||||
|
2023-04-30 Martin Liska <mliska@suse.cz>
|
||||||
|
|
||||||
|
* c-c++-common/hwasan/asan-pr70541.c: Adjust wording of expected
|
||||||
|
output.
|
||||||
|
* c-c++-common/hwasan/heap-overflow.c: Likewise.
|
||||||
|
* c-c++-common/hwasan/sanity-check-pure-c.c: Likewise.
|
||||||
|
* c-c++-common/hwasan/use-after-free.c: Likewise.
|
||||||
|
|
||||||
|
2023-04-30 Longjun Luo <luolongjuna@gmail.com>
|
||||||
|
|
||||||
|
* gcc.dg/builtin-redefine.c: Test for redefintion warnings
|
||||||
|
for __LINE__.
|
||||||
|
* gcc.dg/builtin-redefine-1.c: New test.
|
||||||
|
|
||||||
|
2023-04-30 Gaius Mulley <gaiusmod2@gmail.com>
|
||||||
|
|
||||||
|
* gm2/pim/run/pass/constlitbase.mod: New test.
|
||||||
|
|
||||||
2023-04-29 Roger Sayle <roger@nextmovesoftware.com>
|
2023-04-29 Roger Sayle <roger@nextmovesoftware.com>
|
||||||
|
|
||||||
* gcc.target/xstormy16/neghi2.c: New test case.
|
* gcc.target/xstormy16/neghi2.c: New test case.
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,16 @@
|
||||||
|
2023-04-30 Jeff Law <jlaw@ventanamicro>
|
||||||
|
|
||||||
|
Revert:
|
||||||
|
2023-04-30 Longjun Luo <luolongjuna@gmail.com>
|
||||||
|
|
||||||
|
* init.cc (builtin_array): Do not always warn for a redefinition
|
||||||
|
of __LINE__.
|
||||||
|
|
||||||
|
2023-04-30 Longjun Luo <luolongjuna@gmail.com>
|
||||||
|
|
||||||
|
* init.cc (builtin_array): Do not always warn for a redefinition
|
||||||
|
of __LINE__.
|
||||||
|
|
||||||
2023-03-25 David Malcolm <dmalcolm@redhat.com>
|
2023-03-25 David Malcolm <dmalcolm@redhat.com>
|
||||||
|
|
||||||
PR analyzer/109098
|
PR analyzer/109098
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,13 @@
|
||||||
|
2023-04-30 Martin Liska <mliska@suse.cz>
|
||||||
|
|
||||||
|
PR sanitizer/109674
|
||||||
|
* hwasan/Makefile.am: Depend on liblsan.
|
||||||
|
* hwasan/Makefile.in: Re-generate.
|
||||||
|
|
||||||
|
2023-04-30 Martin Liska <mliska@suse.cz>
|
||||||
|
|
||||||
|
* LOCAL_PATCHES: Update revision.
|
||||||
|
|
||||||
2023-04-26 Martin Liska <mliska@suse.cz>
|
2023-04-26 Martin Liska <mliska@suse.cz>
|
||||||
|
|
||||||
* LOCAL_PATCHES: Change revision.
|
* LOCAL_PATCHES: Change revision.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue