Daily bump.
This commit is contained in:
parent
ee122a2eea
commit
0090888656
6 changed files with 183 additions and 1 deletions
|
@ -1,3 +1,54 @@
|
|||
2023-03-29 Hans-Peter Nilsson <hp@axis.com>
|
||||
|
||||
* config/cris/cris.cc (cris_rtx_costs) [CONST_INT]: Return 0
|
||||
for many quick operands, for register-sized modes.
|
||||
|
||||
2023-03-29 Jiawei <jiawei@iscas.ac.cn>
|
||||
|
||||
* common/config/riscv/riscv-common.cc (riscv_subset_list::parse):
|
||||
New check.
|
||||
|
||||
2023-03-29 Martin Liska <mliska@suse.cz>
|
||||
|
||||
PR bootstrap/109310
|
||||
* configure.ac: Emit a warning for deprecated option
|
||||
--enable-link-mutex.
|
||||
* configure: Regenerate.
|
||||
|
||||
2023-03-29 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/109331
|
||||
* tree-ssa-forwprop.cc (pass_forwprop::execute): When we
|
||||
discover a taken edge make sure to cleanup the CFG.
|
||||
|
||||
2023-03-29 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/109327
|
||||
* tree-ssa-forwprop.cc (pass_forwprop::execute): Deal with
|
||||
already removed stmts when draining to_remove.
|
||||
|
||||
2023-03-29 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR ipa/106124
|
||||
* dwarf2out.cc (lookup_type_die): Reset TREE_ASM_WRITTEN
|
||||
so we can re-create the DIE for the type if required.
|
||||
|
||||
2023-03-29 Jakub Jelinek <jakub@redhat.com>
|
||||
Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/109301
|
||||
* tree-ssa-math-opts.cc (pass_data_cse_sincos): Change
|
||||
properties_provided from PROP_gimple_opt_math to 0.
|
||||
(pass_data_expand_powcabs): Change properties_provided from 0 to
|
||||
PROP_gimple_opt_math.
|
||||
|
||||
2023-03-29 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/109154
|
||||
* tree-if-conv.cc (gen_phi_arg_condition): Handle single
|
||||
inverted condition specially by inverting at the caller.
|
||||
(gen_phi_arg_condition): Swap COND_EXPR arms if requested.
|
||||
|
||||
2023-03-28 David Malcolm <dmalcolm@redhat.com>
|
||||
|
||||
PR c/107002
|
||||
|
|
|
@ -1 +1 @@
|
|||
20230329
|
||||
20230330
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
2023-03-29 Jason Merrill <jason@redhat.com>
|
||||
|
||||
PR c++/109321
|
||||
PR c++/109320
|
||||
* pt.cc (alias_ctad_tweaks): Rewrite deduced args.
|
||||
(type_targs_deducible_from): Handle null pack deduction.
|
||||
|
||||
2023-03-28 David Malcolm <dmalcolm@redhat.com>
|
||||
|
||||
PR c/107002
|
||||
|
|
|
@ -1,3 +1,32 @@
|
|||
2023-03-29 Gaius Mulley <gaiusmod2@gmail.com>
|
||||
|
||||
PR modula2/109336
|
||||
PR modula2/109315
|
||||
* gm2-compiler/M2FileName.mod (CalculateFileName): Simplified by
|
||||
ensuring the extension contains the ".".
|
||||
(CalculateStemName): Re-formatted.
|
||||
(ExtractExtension): Re-formatted.
|
||||
(ExtractModule): Re-formatted.
|
||||
* gm2-compiler/M2Options.def (setdefextension): Add block comment.
|
||||
(setmodextension): Add block comment. Re-formatted.
|
||||
* gm2-compiler/M2Options.mod (setdefextension): Add block comment.
|
||||
(setmodextension): Add block comment. Re-formatted.
|
||||
* gm2-compiler/M2Search.mod (FindSourceDefFile): Use
|
||||
DefaultDefExt.
|
||||
(DefaultDefExt): New constant.
|
||||
(DefaultModExt): New constant.
|
||||
(FindSourceModFile): Use DefaultModExt.
|
||||
* gm2-gcc/m2decl.cc (m2decl_DeclareKnownVariable): Correct
|
||||
spelling.
|
||||
* gm2spec.cc (M2SOURCE): New constant.
|
||||
(LANGSPEC): New value.
|
||||
(MATHLIB): New value.
|
||||
(WITHLIBC): New value.
|
||||
(SKIPOPT): New value.
|
||||
(lang_specific_driver): Replace seen_module_extension bool with
|
||||
module_extension char *. Detect -fmod= and remember extension.
|
||||
Use the extension to detect modula-2 source and mark it as such.
|
||||
|
||||
2023-03-23 Gaius Mulley <gaiusmod2@gmail.com>
|
||||
|
||||
PR modula2/109264
|
||||
|
|
|
@ -1,3 +1,47 @@
|
|||
2023-03-29 Gaius Mulley <gaiusmod2@gmail.com>
|
||||
|
||||
PR modula2/109336
|
||||
* gm2/link/nondefaultext/pass/hello.md: New test.
|
||||
* gm2/link/nondefaultext/pass/liba.dm: New test.
|
||||
* gm2/link/nondefaultext/pass/liba.md: New test.
|
||||
* gm2/link/nondefaultext/pass/link-nondefaultext-pass.exp: New test.
|
||||
|
||||
2023-03-29 Jiawei <jiawei@iscas.ac.cn>
|
||||
|
||||
* gcc.target/riscv/arch-19.c: New test.
|
||||
|
||||
2023-03-29 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/109331
|
||||
* gcc.dg/torture/pr109331.c: New testcase.
|
||||
|
||||
2023-03-29 Richard Biener <rguenther@suse.de>
|
||||
|
||||
* g++.dg/pr94920.C: Scan forwprop1 instead of optimized.
|
||||
|
||||
2023-03-29 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/109327
|
||||
* gcc.dg/pr109327.c: New testcase.
|
||||
|
||||
2023-03-29 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR ipa/106124
|
||||
* g++.dg/gomp/pr106124.C: New testcase.
|
||||
|
||||
2023-03-29 Jakub Jelinek <jakub@redhat.com>
|
||||
Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/109301
|
||||
* gcc.dg/pr109301.c: New test.
|
||||
|
||||
2023-03-29 Jason Merrill <jason@redhat.com>
|
||||
|
||||
PR c++/109321
|
||||
PR c++/109320
|
||||
* g++.dg/cpp2a/class-deduction-alias16.C: New test.
|
||||
* g++.dg/cpp2a/class-deduction-alias17.C: New test.
|
||||
|
||||
2023-03-28 Thomas Schwinge <thomas@codesourcery.com>
|
||||
|
||||
* gfortran.dg/weak-2.f90: Enable for nvptx target.
|
||||
|
|
|
@ -1,3 +1,54 @@
|
|||
2023-03-29 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
PR libstdc++/109242
|
||||
* testsuite/20_util/optional/monadic/pr109340.cc: Moved to...
|
||||
* testsuite/20_util/optional/monadic/pr109242.cc: ...here.
|
||||
|
||||
2023-03-29 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* include/experimental/internet (ip::make_address): Implement
|
||||
missing overload.
|
||||
(ip::address_v4::broadcast()): Avoid undefined shift.
|
||||
(ip::basic_endpoint): Fix member functions for constexpr.
|
||||
(ip::basic_endpoint::_M_is_v6): Replace member function with
|
||||
data member, adjust member functions using it.
|
||||
(ip::basic_endpoint::resize): Update _M_is_v6 based on sockaddr
|
||||
content.
|
||||
* testsuite/experimental/net/internet/address/v4/cons.cc: Fix
|
||||
constexpr checks to work in C++14.
|
||||
* testsuite/experimental/net/internet/address/v4/creation.cc:
|
||||
Likewise.
|
||||
* testsuite/experimental/net/internet/endpoint/cons.cc:
|
||||
Likewise.
|
||||
* testsuite/experimental/net/internet/network/v4/cons.cc:
|
||||
Likewise.
|
||||
* testsuite/experimental/net/internet/network/v4/members.cc:
|
||||
Likewise.
|
||||
* testsuite/experimental/net/internet/endpoint/extensible.cc: New test.
|
||||
|
||||
2023-03-29 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* include/std/expected (expected::value() &): Use const lvalue
|
||||
for unex member passed to bad_expected_access constructor, as
|
||||
per LWG 3843.
|
||||
|
||||
2023-03-29 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
PR libstdc++/109340
|
||||
* include/std/expected (expected::transform): Use
|
||||
std::remove_cv_t instead of std::remove_cvref_t.
|
||||
(expected::transform_error): Likewise.
|
||||
(expected<cv void, E>::transform): Likewise.
|
||||
(expected<cv void, E>::transform_error): Likewise.
|
||||
* include/std/optional (transform): Use std::remove_cv_t.
|
||||
* testsuite/20_util/optional/monadic/pr109340.cc: New test.
|
||||
|
||||
2023-03-29 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* include/std/optional (optional): Adjust static assertion to
|
||||
reject arrays and functions as well as references.
|
||||
* testsuite/20_util/optional/requirements_neg.cc: New test.
|
||||
|
||||
2023-03-28 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
PR libstdc++/103387
|
||||
|
|
Loading…
Add table
Reference in a new issue