diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-10-29 00:18:25 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-10-29 00:18:25 +0000 |
commit | 87fa88222ff0c7f8b2ca3a480f41fc4e826cdf32 (patch) | |
tree | 995875479eec103936a44d089a40a0a48c7192f2 /gcc | |
parent | a67594d181527218d8c0316ef68af238f8d80e87 (diff) | |
download | gcc-87fa88222ff0c7f8b2ca3a480f41fc4e826cdf32.zip gcc-87fa88222ff0c7f8b2ca3a480f41fc4e826cdf32.tar.gz gcc-87fa88222ff0c7f8b2ca3a480f41fc4e826cdf32.tar.bz2 |
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 59 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 57 |
3 files changed, 117 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8f7f72f..027d1f9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 0dda557..03377a9 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20241028 +20241029 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index aab3ffa..f5188c8 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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 |