diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2021-10-10 00:16:19 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2021-10-10 00:16:19 +0000 |
commit | c9db17b8803e8ac294016a68352ffdcfa0699ab4 (patch) | |
tree | 132cab91a14ab37e5f46969eab6705391a178e9f | |
parent | b2713e9f16d3f3597d71e4be6384ecd788684936 (diff) | |
download | gcc-c9db17b8803e8ac294016a68352ffdcfa0699ab4.zip gcc-c9db17b8803e8ac294016a68352ffdcfa0699ab4.tar.gz gcc-c9db17b8803e8ac294016a68352ffdcfa0699ab4.tar.bz2 |
Daily bump.
-rw-r--r-- | gcc/ChangeLog | 12 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/c/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/cp/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/fortran/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 41 | ||||
-rw-r--r-- | libgomp/ChangeLog | 34 |
7 files changed, 108 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fe1b154..b8c235d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,15 @@ +2021-10-09 liuhongt <hongtao.liu@intel.com> + + PR target/102639 + * config/i386/i386-expand.c (ix86_valid_mask_cmp_mode): Handle + HFmode. + (ix86_use_mask_cmp_p): Ditto. + (ix86_expand_sse_movcc): Ditto. + * config/i386/i386.md (setcc_hf_mask): New define_insn. + (movhf_mask): Ditto. + (UNSPEC_MOVCC_MASK): New unspec. + * config/i386/sse.md (UNSPEC_PCMP): Move to i386.md. + 2021-10-08 Vladimir N. Makarov <vmakarov@redhat.com> PR rtl-optimization/102627 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 352475c..4ac9cc7 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20211009 +20211010 diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index c5f5575..07aede0 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,3 +1,9 @@ +2021-10-09 Jakub Jelinek <jakub@redhat.com> + + * c-parser.c (c_parser_omp_structured_block_sequence): New function. + (c_parser_omp_scan_loop_body): Use it. + (c_parser_omp_sections_scope): Likewise. + 2021-10-07 Richard Biener <rguenther@suse.de> * c-typeck.c (lvalue_p): Also allow MEM_REF and TARGET_MEM_REF. diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 3dfe67f..20d6f6d 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,11 @@ +2021-10-09 Jakub Jelinek <jakub@redhat.com> + + * parser.c (cp_parser_omp_structured_block): Remove disallow_omp_attrs + argument. + (cp_parser_omp_structured_block_sequence): New function. + (cp_parser_omp_scan_loop_body): Use it. + (cp_parser_omp_sections_scope): Likewise. + 2021-10-08 Martin Liska <mliska@suse.cz> * constexpr.c (maybe_warn_about_constant_value): Use new macro diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 0d0ebed..6bc6fdb 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,9 @@ +2021-10-09 Harald Anlauf <anlauf@gmx.de> + + PR fortran/65454 + * module.c (read_module): Handle old and new-style relational + operators when used in USE module, ONLY: OPERATOR(op). + 2021-10-08 Sandra Loosemore <sandra@codesourcery.com> PR fortran/54753 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 70a13e4..3eeb8b9 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,44 @@ +2021-10-09 Harald Anlauf <anlauf@gmx.de> + + PR fortran/65454 + * gfortran.dg/interface_operator_3.f90: New test. + +2021-10-09 Kewen Lin <linkw@linux.ibm.com> + + * c-c++-common/Wstringop-overflow-2.c: Add missing comment. + * gcc.dg/Warray-bounds-51.c: Likewise. + * gcc.dg/Warray-parameter-3.c: Likewise. + * gcc.dg/Wstringop-overflow-14.c: Likewise. + * gcc.dg/Wstringop-overflow-21.c: Likewise. + * gcc.dg/Wstringop-overflow-76.c: Likewise. + +2021-10-09 liuhongt <hongtao.liu@intel.com> + + * g++.dg/tree-ssa/pr94403.C: Add -fno-tree-vectorize + * gcc.dg/optimize-bswapsi-5.c: Ditto. + * gcc.dg/optimize-bswapsi-6.c: Ditto. + * gcc.dg/Warray-bounds-51.c: Add additional option + -mtune=generic for target x86/i?86 + * gcc.dg/Wstringop-overflow-14.c: Ditto. + +2021-10-09 Jakub Jelinek <jakub@redhat.com> + + * c-c++-common/gomp/sections1.c (foo): Don't expect errors on + multiple statements in between section directive(s). Add testcases + for invalid no statements in between section directive(s). + * gcc.dg/gomp/sections-2.c (foo): Don't expect errors on + multiple statements in between section directive(s). + * g++.dg/gomp/sections-2.C (foo): Likewise. + * g++.dg/gomp/attrs-6.C (foo): Add testcases for multiple + statements in between section directive(s). + (bar): Add testcases for multiple statements in between scan + directive. + * g++.dg/gomp/attrs-7.C (bar): Adjust expected error recovery. + +2021-10-09 liuhongt <hongtao.liu@intel.com> + + * g++.target/i386/pr102639.C: New test. + 2021-10-08 Sandra Loosemore <sandra@codesourcery.com> PR fortran/54753 diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 64d3f03..300d2e4 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,37 @@ +2021-10-09 liuhongt <hongtao.liu@intel.com> + + * testsuite/libgomp.c++/scan-10.C: Add option -fvect-cost-model=cheap. + * testsuite/libgomp.c++/scan-11.C: Ditto. + * testsuite/libgomp.c++/scan-12.C: Ditto. + * testsuite/libgomp.c++/scan-13.C: Ditto. + * testsuite/libgomp.c++/scan-14.C: Ditto. + * testsuite/libgomp.c++/scan-15.C: Ditto. + * testsuite/libgomp.c++/scan-16.C: Ditto. + * testsuite/libgomp.c++/scan-9.C: Ditto. + * testsuite/libgomp.c-c++-common/lastprivate-conditional-7.c: Ditto. + * testsuite/libgomp.c-c++-common/lastprivate-conditional-8.c: Ditto. + * testsuite/libgomp.c/scan-11.c: Ditto. + * testsuite/libgomp.c/scan-12.c: Ditto. + * testsuite/libgomp.c/scan-13.c: Ditto. + * testsuite/libgomp.c/scan-14.c: Ditto. + * testsuite/libgomp.c/scan-15.c: Ditto. + * testsuite/libgomp.c/scan-16.c: Ditto. + * testsuite/libgomp.c/scan-17.c: Ditto. + * testsuite/libgomp.c/scan-18.c: Ditto. + * testsuite/libgomp.c/scan-19.c: Ditto. + * testsuite/libgomp.c/scan-20.c: Ditto. + * testsuite/libgomp.c/scan-21.c: Ditto. + * testsuite/libgomp.c/scan-22.c: Ditto. + +2021-10-09 Jakub Jelinek <jakub@redhat.com> + + * libgomp.texi (OpenMP 5.1): Mention implemented support for + structured block sequences in C/C++. Mention support for + unconstrained/reproducible modifiers on order clause. + Mention partial (C/C++ only) support of extentensions to atomics + construct. Mention partial (C/C++ on clause only) support of + align/allocator modifiers on allocate clause. + 2021-10-02 Tobias Burnus <tobias@codesourcery.com> * testsuite/libgomp.fortran/order-reproducible-1.f90: New test |