mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
Daily bump.
This commit is contained in:
parent
a67594d181
commit
87fa88222f
@ -1,3 +1,8 @@
|
||||
2024-10-28 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* configure.ac: Update requirement to C++14.
|
||||
* configure: Regenerate.
|
||||
|
||||
2024-10-25 Andrew Pinski <quic_apinski@quicinc.com>
|
||||
|
||||
PR bootstrap/105474
|
||||
|
@ -1,3 +1,62 @@
|
||||
2024-10-28 Sam James <sam@gentoo.org>
|
||||
|
||||
* opts-common.cc (prune_options): Fix typo.
|
||||
|
||||
2024-10-28 Andrew MacLeod <amacleod@redhat.com>
|
||||
|
||||
* range-op-ptr.cc (operator_bitwise_or::fold_range): Fix logic
|
||||
for setting nonzero.
|
||||
|
||||
2024-10-28 Kyrylo Tkachov <ktkachov@nvidia.com>
|
||||
|
||||
* config/aarch64/arm_neon.h (vxarq_u64): Rename imm6 to __imm6.
|
||||
|
||||
2024-10-28 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* doc/install.texi (Prerequisites): Update to C++14.
|
||||
|
||||
2024-10-28 Jeff Law <jlaw@ventanamicro.com>
|
||||
|
||||
PR target/117316
|
||||
* config/riscv/riscv.cc (riscv_tune_param): Drop initializer.
|
||||
(*_tune_info): Add initializers for code alignments.
|
||||
|
||||
2024-10-28 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/117307
|
||||
* tree-vect-data-refs.cc (vect_analyze_data_ref_accesses):
|
||||
Properly compute STMT_VINFO_SLP_VECT_ONLY. Set it on all
|
||||
parts of a split group.
|
||||
|
||||
2024-10-28 Tobias Burnus <tburnus@baylibre.com>
|
||||
|
||||
* tree-core.h (enum omp_clause_code): Add comments to cross ref to
|
||||
OMP_CLAUSE_DECL etc. and mark the ranges used in the range checks.
|
||||
|
||||
2024-10-28 Andrew Pinski <quic_apinski@quicinc.com>
|
||||
|
||||
PR middle-end/111285
|
||||
* tree-vect-generic.cc (do_unop): Use a signed type for the
|
||||
operand if the operation was ABSU_EXPR.
|
||||
|
||||
2024-10-28 Andrew Pinski <quic_apinski@quicinc.com>
|
||||
|
||||
* tree-ssa-phiopt.cc (match_simplify_replacement): Move
|
||||
check for maybe_undef_p earlier.
|
||||
|
||||
2024-10-28 Richard Biener <rguenther@suse.de>
|
||||
|
||||
* tree-vect-patterns.cc (check_bool_pattern): For comparisons
|
||||
we do nothing if we can expand them or we can't replace them
|
||||
with a ? -1 : 0 condition - but the latter would require
|
||||
expanding the comparison which we proved we can't. So do
|
||||
nothing, aka not think vec_cond{u,eq,} will save us.
|
||||
|
||||
2024-10-28 xuli <xuli1@eswincomputing.com>
|
||||
|
||||
PR target/117286
|
||||
* config/riscv/riscv-vector-builtins-bases.cc: Do not expand NULL return.
|
||||
|
||||
2024-10-27 Fangrui Song <maskray@gcc.gnu.org>
|
||||
|
||||
* config/arm/bpabi.h (TARGET_FDPIC_ASM_SPEC): Transform -mfdpic.
|
||||
|
@ -1 +1 @@
|
||||
20241028
|
||||
20241029
|
||||
|
@ -1,3 +1,60 @@
|
||||
2024-10-28 David Malcolm <dmalcolm@redhat.com>
|
||||
|
||||
* gcc.dg/sarif-output/test-bad-pragma.py: Rename to...
|
||||
* gcc.dg/sarif-output/bad-pragma.py: ...this.
|
||||
* gcc.dg/sarif-output/bad-pragma.c: Update for script renaming.
|
||||
* gcc.dg/sarif-output/test-include-chain-1.py: Rename to...
|
||||
* gcc.dg/sarif-output/include-chain-1.py: ...this.
|
||||
* gcc.dg/sarif-output/include-chain-1.c: Update for script renaming.
|
||||
* gcc.dg/sarif-output/test-include-chain-2.py: Rename to...
|
||||
* gcc.dg/sarif-output/include-chain-2.py: ...this.
|
||||
* gcc.dg/sarif-output/include-chain-2.c: Update for script renaming.
|
||||
* gcc.dg/sarif-output/test-missing-semicolon.py: Rename to...
|
||||
* gcc.dg/sarif-output/missing-semicolon.py: ...this.
|
||||
* gcc.dg/sarif-output/missing-semicolon.c: Update for script renaming.
|
||||
* gcc.dg/sarif-output/test-no-diagnostics.py: Rename to...
|
||||
* gcc.dg/sarif-output/no-diagnostics.py: ...this.
|
||||
* gcc.dg/sarif-output/no-diagnostics.c: Update for script renaming.
|
||||
* gcc.dg/sarif-output/test-werror.py: Rename to...
|
||||
* gcc.dg/sarif-output/werror.py: ...this.
|
||||
* gcc.dg/sarif-output/werror.c: Update for script renaming.
|
||||
|
||||
2024-10-28 Andrew Pinski <quic_apinski@quicinc.com>
|
||||
|
||||
PR tree-optimization/117330
|
||||
* gcc.dg/torture/pr117330-1.c: New test.
|
||||
|
||||
2024-10-28 Dimitar Dimitrov <dimitar@dinux.eu>
|
||||
|
||||
* g++.dg/lto/pr47333_0.C: Require target that supports atomic
|
||||
operations on int and long types.
|
||||
|
||||
2024-10-28 Sam James <sam@gentoo.org>
|
||||
|
||||
PR tree-optimization/107467
|
||||
PR middle-end/115110
|
||||
* g++.dg/lto/pr107467_0.C: New test.
|
||||
|
||||
2024-10-28 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/117307
|
||||
* gcc.dg/vect/pr117307.c: New testcase.
|
||||
|
||||
2024-10-28 Andrew Pinski <quic_apinski@quicinc.com>
|
||||
|
||||
PR middle-end/111285
|
||||
* g++.dg/torture/vect-absu-1.C: New test.
|
||||
|
||||
2024-10-28 xuli <xuli1@eswincomputing.com>
|
||||
|
||||
PR target/117286
|
||||
* gcc.target/riscv/rvv/base/pr117286.c: New test.
|
||||
|
||||
2024-10-28 H.J. Lu <hjl.tools@gmail.com>
|
||||
|
||||
* gcc.target/i386/pr53533-1.c: Adjust assembly scan.
|
||||
* gcc.target/i386/pr53533-3.c: Likewise.
|
||||
|
||||
2024-10-27 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* c-c++-common/cpp/Wtrailing-whitespace-2.c: Use
|
||||
|
@ -1,3 +1,51 @@
|
||||
2024-10-28 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* testsuite/23_containers/vector/bool/cons/from_range.cc: Use
|
||||
dg-do run instead of compile.
|
||||
(test_ranges): Use do_test instead of do_test_a for rvalue
|
||||
range.
|
||||
(test_constexpr): Call function template instead of just
|
||||
instantiating it.
|
||||
* testsuite/23_containers/vector/bool/modifiers/assign/assign_range.cc:
|
||||
Use dg-do run instead of compile.
|
||||
(do_test): Use same test logic for vector<bool> as for primary
|
||||
template.
|
||||
(test_constexpr): Call function template instead of just
|
||||
instantiating it.
|
||||
* testsuite/23_containers/vector/bool/modifiers/insert/append_range.cc:
|
||||
Use dg-do run instead of compile.
|
||||
(test_ranges): Use do_test instead of do_test_a for rvalue
|
||||
range.
|
||||
(test_constexpr): Call function template instead of just
|
||||
instantiating it.
|
||||
* testsuite/23_containers/vector/bool/modifiers/insert/insert_range.cc:
|
||||
Use dg-do run instead of compile.
|
||||
(do_test): Fix incorrect function arguments to match intended
|
||||
results.
|
||||
(test_ranges): Use do_test instead of do_test_a for rvalue
|
||||
range.
|
||||
(test_constexpr): Call function template instead of just
|
||||
instantiating it.
|
||||
* testsuite/23_containers/vector/cons/from_range.cc: Use dg-do
|
||||
run instead of compile.
|
||||
(test_ranges): Fix ill-formed call to do_test.
|
||||
(test_constexpr): Call function template instead of just
|
||||
instantiating it.
|
||||
* testsuite/23_containers/vector/modifiers/append_range.cc:
|
||||
Use dg-do run instead of compile.
|
||||
(test_constexpr): Likewise.
|
||||
* testsuite/23_containers/vector/modifiers/assign/assign_range.cc:
|
||||
Use dg-do run instead of compile.
|
||||
(do_test): Do not reuse input ranges.
|
||||
(test_constexpr): Call function template instead of just
|
||||
instantiating it.
|
||||
* testsuite/23_containers/vector/modifiers/insert/insert_range.cc:
|
||||
Use dg-do run instead of compile.
|
||||
(do_test): Fix incorrect function arguments to match intended
|
||||
results.
|
||||
(test_constexpr): Call function template instead of just
|
||||
instantiating it.
|
||||
|
||||
2024-10-27 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
PR libstdc++/111055
|
||||
|
Loading…
Reference in New Issue
Block a user