Daily bump.
This commit is contained in:
parent
c250ff9098
commit
fbfe43daec
5 changed files with 80 additions and 1 deletions
|
@ -1,3 +1,32 @@
|
|||
2023-12-09 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR tree-optimization/112887
|
||||
* tree-ssa-phiopt.cc (hoist_adjacent_loads): Change type of
|
||||
param_align, param_align_bits, offset1, offset2, size2 and align1
|
||||
variables from int or unsigned int to unsigned HOST_WIDE_INT.
|
||||
|
||||
2023-12-09 Costas Argyris <costas.argyris@gmail.com>
|
||||
Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR driver/93019
|
||||
* gcc.cc (driver::finalize): Call XDELETEVEC on mdswitches before
|
||||
clearing it.
|
||||
|
||||
2023-12-09 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* attribs.h (any_nonignored_attribute_p): Declare.
|
||||
* attribs.cc (any_nonignored_attribute_p): New function.
|
||||
|
||||
2023-12-09 Juzhe-Zhong <juzhe.zhong@rivai.ai>
|
||||
|
||||
PR target/112932
|
||||
* config/riscv/vector.md (movmisalign<mode>): Fix VLSmode bugs.
|
||||
|
||||
2023-12-09 Alexandre Oliva <oliva@adacore.com>
|
||||
|
||||
* tree-emutls.cc: Include diagnostic-core.h.
|
||||
(pass_ipa_lower_emutls::gate): Skip if errors were seen.
|
||||
|
||||
2023-12-08 Vladimir N. Makarov <vmakarov@redhat.com>
|
||||
|
||||
PR rtl-optimization/112875
|
||||
|
|
|
@ -1 +1 @@
|
|||
20231209
|
||||
20231210
|
||||
|
|
|
@ -1,3 +1,12 @@
|
|||
2023-12-09 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* parser.cc (cp_parser_statement, cp_parser_expression_statement,
|
||||
cp_parser_declaration, cp_parser_asm_definition): Don't diagnose
|
||||
ignored attributes if !any_nonignored_attribute_p.
|
||||
* decl.cc (grokdeclarator): Likewise.
|
||||
* name-lookup.cc (handle_namespace_attrs, finish_using_directive):
|
||||
Don't diagnose ignoring of attr_ignored_p attributes.
|
||||
|
||||
2023-12-08 Patrick Palka <ppalka@redhat.com>
|
||||
|
||||
PR c++/83167
|
||||
|
|
|
@ -1,3 +1,29 @@
|
|||
2023-12-09 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR tree-optimization/112887
|
||||
* gcc.dg/pr112887.c: New test.
|
||||
|
||||
2023-12-09 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR tree-optimization/112924
|
||||
* gcc.dg/pr112924.c: New test.
|
||||
|
||||
2023-12-09 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* g++.dg/warn/Wno-attributes-1.C: New test.
|
||||
|
||||
2023-12-09 Juzhe-Zhong <juzhe.zhong@rivai.ai>
|
||||
|
||||
PR target/112932
|
||||
* gcc.target/riscv/rvv/autovec/vls/misalign-1.c: Ditto.
|
||||
* gcc.target/riscv/rvv/autovec/pr112932.c: New test.
|
||||
|
||||
2023-12-09 Hans-Peter Nilsson <hp@axis.com>
|
||||
|
||||
PR testsuite/112786
|
||||
* gcc.dg/tree-ssa/scev-3.c, gcc.dg/tree-ssa/scev-4.c,
|
||||
gcc.dg/tree-ssa/scev-5.c: Remove.
|
||||
|
||||
2023-12-08 Patrick Palka <ppalka@redhat.com>
|
||||
|
||||
PR c++/83167
|
||||
|
|
|
@ -1,3 +1,18 @@
|
|||
2023-12-09 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
PR libstdc++/111826
|
||||
* include/bits/version.def (format): Update value.
|
||||
* include/bits/version.h: Regenerate.
|
||||
* testsuite/std/format/functions/format.cc:
|
||||
|
||||
2023-12-09 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
PR libstdc++/112876
|
||||
* include/std/ranges (ranges::to): Do not try to use an iterator
|
||||
returned by the container's emplace or insert member functions.
|
||||
* testsuite/std/ranges/conv/1.cc (Cont4::emplace, Cont4::insert):
|
||||
Use the iterator parameter. Do not return an iterator.
|
||||
|
||||
2023-12-07 Patrick Palka <ppalka@redhat.com>
|
||||
|
||||
* include/std/ranges (__detail::_ToClosure): Replace with ...
|
||||
|
|
Loading…
Add table
Reference in a new issue