]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Thu, 27 Jan 2022 00:16:29 +0000 (00:16 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Thu, 27 Jan 2022 00:16:29 +0000 (00:16 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/analyzer/ChangeLog
gcc/cp/ChangeLog
gcc/testsuite/ChangeLog
libgfortran/ChangeLog

index 8eb1a600179c7c07ebe69209ac37e5ad5c30bce7..d4a8ab0d3a84e41323f557bd9e72116be6603c68 100644 (file)
@@ -1,3 +1,49 @@
+2022-01-26  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/104239
+       * config/rs6000/emmintrin.h (_mm_sad_epu8): Use __asm__ instead of
+       asm.
+       * config/rs6000/smmintrin.h (_mm_minpos_epu16): Declare iterator
+       before for loop instead of for init clause.
+       * config/rs6000/bmi2intrin.h (_pext_u64): Likewise.
+
+2022-01-26  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/104239
+       * config/rs6000/bmiintrin.h: Test _X86GPRINTRIN_H_INCLUDED instead of
+       _X86INTRIN_H_INCLUDED and adjust #error wording.
+       * config/rs6000/bmi2intrin.h: Likewise.
+
+2022-01-26  Jakub Jelinek  <jakub@redhat.com>
+
+       PR debug/104194
+       * dwarf2out.cc (long_double_as_float128): New function.
+       (modified_type_die): For powerpc64le IEEE 754 quad long double
+       and complex long double emit those as DW_TAG_typedef to
+       _Float128 or complex _Float128 base type.
+
+2022-01-26  Marek Polacek  <polacek@redhat.com>
+
+       PR target/104213
+       * gimple-ssa-warn-access.cc (pass_waccess::warn_invalid_pointer): Don't
+       warn when the SSA_NAME_VAR of REF has supressed -Wuse-after-free.
+
+2022-01-26  Martin Liska  <mliska@suse.cz>
+
+       * ipa-modref-tree.cc (modref_access_node::update):
+       Remove "--param param=foo" with "--param foo".
+       (modref_access_node::insert): Likewise.
+       (modref_access_node::insert_kill): Likewise.
+       * ipa-modref-tree.h (struct modref_ref_node): Likewise.
+       (struct modref_base_node): Likewise.
+       (struct modref_tree): Likewise.
+
+2022-01-26  Raoni Fassina Firmino  <raoni@linux.ibm.com>
+
+       PR target/94193
+       * builtins.cc (expand_builtin_feclear_feraise_except): Add op0
+       predicate check.
+
 2022-01-25  Martin Sebor  <msebor@redhat.com>
 
        PR tree-optimization/104203
index d6410e65d034e974a880bd76b3d209ca9803ed6a..4e4f0c27ccf87ab72373d6d0e0dc89c08daee01d 100644 (file)
@@ -1 +1 @@
-20220126
+20220127
index 4df447d64542592d448a1bf745c9a0b924bc4411..fc4627bc111605647d49712a98e8bf8de896ee7b 100644 (file)
@@ -1,3 +1,23 @@
+2022-01-26  David Malcolm  <dmalcolm@redhat.com>
+
+       PR analyzer/104224
+       * region-model.cc (region_model::check_call_args): New.
+       (region_model::on_call_pre): Call it when ignoring stdio builtins.
+       * region-model.h (region_model::check_call_args): New decl
+
+2022-01-26  David Malcolm  <dmalcolm@redhat.com>
+
+       PR analyzer/94362
+       * constraint-manager.cc (range::add_bound): Fix tests for
+       discarding redundant constraints.  Perform test for rejecting
+       unsatisfiable constraints earlier so that they don't update
+       the object on failure.
+       (selftest::test_range): New.
+       (selftest::test_constant_comparisons): Add test coverage for
+       existing constraints becoming narrower until they are
+       unsatisfiable.
+       (selftest::run_constraint_manager_tests): Call test_range.
+
 2022-01-22  David Malcolm  <dmalcolm@redhat.com>
 
        PR analyzer/104159
index 1229af9a115152d8d03080bf4dd38bc41ee2e0ac..036b6b4f689f587d8d6e5de5852e054be503f960 100644 (file)
@@ -1,3 +1,34 @@
+2022-01-26  Jason Merrill  <jason@redhat.com>
+
+       PR c++/104206
+       PR c++/101072
+       * semantics.cc (finish_compound_literal): Restore VECTOR_TYPE check.
+
+2022-01-26  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/104226
+       * constexpr.cc (init_subob_ctx): For vector ctors containing
+       vector elements, ensure appending to the same ctor instead of
+       creating another one.
+
+2022-01-26  Marek Polacek  <polacek@redhat.com>
+
+       PR target/104213
+       * decl.cc (finish_constructor_body): Suppress -Wuse-after-free.
+       (finish_destructor_body): Likewise.
+       * optimize.cc (build_delete_destructor_body): Likewise.
+
+2022-01-26  Jason Merrill  <jason@redhat.com>
+
+       PR c++/104235
+       * parser.cc (cp_parser_template_name): Repeat lookup of USING_DECL.
+
+2022-01-26  Jason Merrill  <jason@redhat.com>
+
+       PR c++/103057
+       * pt.cc (tsubst_aggr_type): Call tsubst for alias template
+       specialization.
+
 2022-01-25  Patrick Palka  <ppalka@redhat.com>
 
        PR c++/101532
index f507a7f8e025a05eaa5d8405e49b69937a2db3a2..6db5f1ed746f308fb67abfe3e6b04e72a4c7db6d 100644 (file)
@@ -1,3 +1,51 @@
+2022-01-26  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/104239
+       * gcc.target/powerpc/pr104239-3.c: New test.
+
+2022-01-26  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/104239
+       * gcc.target/powerpc/pr104239-1.c: New test.
+       * gcc.target/powerpc/pr104239-2.c: New test.
+
+2022-01-26  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/104226
+       * g++.dg/cpp0x/constexpr-104226.C: New test.
+
+2022-01-26  Marek Polacek  <polacek@redhat.com>
+
+       PR target/104213
+       * g++.dg/warn/Wuse-after-free2.C: New test.
+       * g++.dg/warn/Wuse-after-free3.C: New test.
+
+2022-01-26  Jason Merrill  <jason@redhat.com>
+
+       PR c++/104235
+       * g++.dg/parse/template-keyword2.C: New test.
+
+2022-01-26  Martin Liska  <mliska@suse.cz>
+
+       * gcc.dg/tree-ssa/modref-7.c: Update scanned patterns.
+       * gcc.dg/tree-ssa/modref-8.c: Likewise.
+
+2022-01-26  David Malcolm  <dmalcolm@redhat.com>
+
+       PR analyzer/104224
+       * gcc.dg/analyzer/pr104224.c: New test.
+
+2022-01-26  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/104188
+       * gcc.target/i386/pr104188.c: Add dg-require-effective-target
+       sse2_runtime.  Add -msse2 to dg-options.
+
+2022-01-26  Jason Merrill  <jason@redhat.com>
+
+       PR c++/103057
+       * g++.dg/cpp0x/alias-decl-void1.C: New test.
+
 2022-01-25  Harald Anlauf  <anlauf@gmx.de>
 
        PR fortran/104227
index b50b911b3a14db6b0e0a15d2e57afb9feed89c20..bec97b4977fceeaea72750c464d5ad7ba0275972 100644 (file)
@@ -1,3 +1,9 @@
+2022-01-26  Francois-Xavier Coudert  <fxcoudert@gmail.com>
+
+       PR libfortran/104233
+       * ieee/issignaling_fallback.h: Check GFC_REAL_16_IS_FLOAT128
+       instead of __FLT128_IS_IEC_60559__.
+
 2022-01-25  Francois-Xavier Coudert  <fxcoudert@gmail.com>
 
        * ieee/issignaling_fallback.h: Fix GCC-specific preprocessor