From: GCC Administrator Date: Sat, 6 Aug 2022 00:16:27 +0000 (+0000) Subject: Daily bump. X-Git-Tag: basepoints/gcc-14~5227 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=36e96748edef21eecfe8ffc51dba8ec06e8533ec;p=thirdparty%2Fgcc.git Daily bump. --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 73f42777541..f12ef971c7d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,46 @@ +2022-08-05 David Malcolm + + PR analyzer/105947 + * doc/invoke.texi: Add -Wanalyzer-jump-through-null. + +2022-08-05 Roger Sayle + + * expmed.cc (emit_store_flag_1): Move code to expand double word + equality and inequality against zero or -1, using word operations, + to after trying to use the backend's cstore4 optab/expander. + +2022-08-05 Tamar Christina + + PR middle-end/106534 + * tree-ssa-phiopt.cc (tree_ssa_phiopt_worker): Guard the + value_replacement and store_elim from diamonds. + +2022-08-05 Richard Biener + + * tree-ssa-threadbackward.cc (back_threader::maybe_register_path): + Check whether the registry register_path rejected the path. + (back_threader_registry::register_path): Return whether + register_jump_thread succeeded. + +2022-08-05 Aldy Hernandez + + PR tree-optimization/106514 + * value-range.cc (unsupported_range::unsupported_range): Move... + * value-range.h (unsupported_range::unsupported_range): ...here. + (unsupported_range::set_undefined): New. + +2022-08-05 Richard Biener + + PR tree-optimization/106533 + * tree-loop-distribution.cc (loop_distribution::execute): Continue + analyzing the inner loops when find_seed_stmts_for_distribution + fails. + +2022-08-05 Andrew Pinski + + * config/riscv/predicates.md (splittable_const_int_operand): + Remove the check for TARGET_64BIT for single bit const values. + 2022-08-04 Andrew MacLeod PR tree-optimization/106514 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 9f7125e822a..6f474c62c62 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20220805 +20220806 diff --git a/gcc/analyzer/ChangeLog b/gcc/analyzer/ChangeLog index 5a47d452a8c..0b93219e5c3 100644 --- a/gcc/analyzer/ChangeLog +++ b/gcc/analyzer/ChangeLog @@ -1,3 +1,11 @@ +2022-08-05 David Malcolm + + PR analyzer/105947 + * analyzer.opt (Wanalyzer-jump-through-null): New option. + * engine.cc (class jump_through_null): New. + (exploded_graph::process_node): Complain about jumps through NULL + function pointers. + 2022-08-02 Immad Mir PR analyzer/106298 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 98434c0fbe5..6ee657dc1a7 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,18 @@ +2022-08-05 David Malcolm + + PR analyzer/105947 + * gcc.dg/analyzer/function-ptr-5.c: New test. + +2022-08-05 Richard Biener + + PR tree-optimization/106533 + * gcc.dg/tree-ssa/ldist-39.c: New testcase. + +2022-08-05 Haochen Gui + + * lib/target-supports.exp (check_p9modulo_hw_available): Correct return + value. + 2022-08-04 Tamar Christina * gcc.dg/subnot.c: New test. diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 34495f5c0bc..35af704d57f 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,17 @@ +2022-08-05 Jonathan Wakely + + * include/experimental/scope (__cpp_lib_experimental_scope): + Define. + * testsuite/experimental/scopeguard/uniqueres.cc: Check macro. + +2022-08-05 Jonathan Wakely + + * include/Makefile.am: Add new header. + * include/Makefile.in: Regenerate. + * include/experimental/scope: New file. + * testsuite/experimental/scopeguard/uniqueres.cc: New test. + * testsuite/experimental/scopeguard/exit.cc: New test. + 2022-08-04 Jonathan Wakely * include/std/string_view (basic_string_view(Range&&)): Add