diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2023-06-15 00:16:35 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2023-06-15 00:16:35 +0000 |
commit | c1c5edef33e3307296af244f50f9256472c69c09 (patch) | |
tree | a7f557d352df6419b7237bb928e2a6f23777523b | |
parent | ef30f9b094f58ba151164db01b2cf38a0b66863c (diff) | |
download | gcc-c1c5edef33e3307296af244f50f9256472c69c09.zip gcc-c1c5edef33e3307296af244f50f9256472c69c09.tar.gz gcc-c1c5edef33e3307296af244f50f9256472c69c09.tar.bz2 |
Daily bump.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | contrib/ChangeLog | 64 | ||||
-rw-r--r-- | gcc/ChangeLog | 24 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/cp/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 27 | ||||
-rw-r--r-- | libgomp/ChangeLog | 52 | ||||
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 |
8 files changed, 185 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2023-06-14 Filip Kastl <filip.kastl@gmail.com> + + * MAINTAINERS: Add myself to write after approval + 2023-06-02 YunQiang Su <yunqiang.su@cipunited.com> * MAINTAINERS (CPU Port Maintainers): Add myself as MIPS diff --git a/contrib/ChangeLog b/contrib/ChangeLog index e319352..2aa559fb 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,67 @@ +2023-06-14 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org> + + * testsuite-management/validate_failures.py (TestResult,) + (ParseManifestWorker, ParseSummary, Main): Handle new option + "--srcpath <regex>". + +2023-06-14 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org> + + * testsuite-management/validate_failures.py (TestResult): Update. + (Main): Handle new option "--expiry_date YYYYMMDD". + +2023-06-14 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org> + + * testsuite-management/validate_failures.py (ResultSet.update,) + (ResultSet.HasTestsuite): New methods. + (GetResults): Update. + (ParseSummary, CompareResults, PerformComparison, Main): Handle new + option --invert_match. + +2023-06-14 Thiago Bauermann <thiago.bauermann@linaro.org> + + * testsuite-management/validate_failures.py (TestResult): Improve error + output. + +2023-06-14 Christophe Lyon <christophe.lyon@linaro.org> + + * testsuite-management/validate_failures.py (_EXP_LINE_FORMAT,) + (_EXP_LINE_REX, ResultSet): Support "$tool:" prefix in exp names. + +2023-06-14 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org> + + * testsuite-management/validate_failures.py (Main): Use exit code "2" + to indicate regression. + +2023-06-14 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org> + + * testsuite-management/validate_failures.py (_VALID_TEST_RESULTS_REX): + Update. + (TestResult): Use _VALID_TEST_RESULTS_REX. + +2023-06-14 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org> + + * testsuite-management/validate_failures.py: Add more verbosity levels. + +2023-06-14 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org> + + * testsuite-management/validate_failures.py: Simplify GetManifestPath(). + +2023-06-14 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org> + + * testsuite-management/validate_failures.py (GetResults): Update. + (CompareBuilds): Read in manifest. + +2023-06-14 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org> + + * testsuite-management/validate_failures.py (ParseManifestWorker): + Support expiry attributes in manifests. + (ParseSummary): Add a comment. + +2023-06-14 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org> + + * testsuite-management/validate_failures.py: Avoid testsuite + aliasing. + 2023-06-13 Andi Kleen <ak@linux.intel.com> * gen_autofdo_event.py: Update for download server changes diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0933612..db1de57 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,27 @@ +2023-06-14 Jivan Hakobyan <jivanhakobyan9@gmail.com> + + * config/moxie/uclinux.h (MFWRAP_SPEC): Remove + +2023-06-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com> + + * config/aarch64/aarch64-sve-builtins-base.cc (svlast_impl::fold): + Fix signed comparison warning in loop from npats to enelts. + +2023-06-14 Thomas Schwinge <thomas@codesourcery.com> + + * gcc.cc (driver_handle_option): Forward host '-lgfortran', '-lm' + to offloading compilation. + * config/gcn/mkoffload.cc (main): Adjust. + * config/nvptx/mkoffload.cc (main): Likewise. + * doc/invoke.texi (foffload-options): Update example. + +2023-06-14 liuhongt <hongtao.liu@intel.com> + + PR target/110227 + * config/i386/sse.md (mov<mode>_internal>): Use x instead of v + for alternative 2 since there's no evex version for vpcmpeqd + ymm, ymm, ymm. + 2023-06-13 Jeff Law <jlaw@ventanamicro.com> * gcc.cc (LINK_COMMAND_SPEC): Remove mudflap spec handling. diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 60b8c2b..3f6866a 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20230614 +20230615 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 863e31d..9261bfa 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,10 @@ +2023-06-14 Jason Merrill <jason@redhat.com> + + DR 2327 + PR c++/86521 + * call.cc (joust_maybe_elide_copy): Don't change cand. + (joust): Move the elided tiebreaker later. + 2023-06-13 David Malcolm <dmalcolm@redhat.com> PR c/84890 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5a7ed4d..b5fd6be 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,30 @@ +2023-06-14 Jason Merrill <jason@redhat.com> + + DR 2327 + PR c++/86521 + * g++.dg/cpp0x/overload-conv-4.C: Remove warnings. + * g++.dg/cpp1z/elide7.C: New test. + +2023-06-14 Thomas Schwinge <thomas@codesourcery.com> + + * gfortran.fortran-torture/execute/math.f90: Enhance for optional + OpenACC 'serial', OpenMP 'target' usage. + +2023-06-14 Thomas Schwinge <thomas@codesourcery.com> + + * c-c++-common/Wfree-nonheap-object-2.c: Tighten 'dg-warning' + alternatives. + * c-c++-common/Wfree-nonheap-object-3.c: Likewise. + * c-c++-common/Wfree-nonheap-object.c: Likewise. + +2023-06-14 Thomas Schwinge <thomas@codesourcery.com> + + * g++.dg/warn/Wfree-nonheap-object.s: Remove. + +2023-06-14 liuhongt <hongtao.liu@intel.com> + + * gcc.target/i386/pr110227.c: New test. + 2023-06-13 David Malcolm <dmalcolm@redhat.com> PR c/84890 diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index d414241..4835dc4 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,55 @@ +2023-06-14 Thomas Schwinge <thomas@codesourcery.com> + + * target.c (resolve_device): Align a + 'OMP_TARGET_OFFLOAD=mandatory' diagnostic with others. + * testsuite/libgomp.c/target-51.c: Adjust. + +2023-06-14 Thomas Schwinge <thomas@codesourcery.com> + + * testsuite/libgomp.fortran/fortran.exp (lang_link_flags): Don't + set. + * testsuite/libgomp.oacc-fortran/fortran.exp (lang_link_flags): + Likewise. + * testsuite/libgomp.c/simd-math-1.c: Remove + '-foffload-options=-lm'. + * testsuite/libgomp.fortran/fortran-torture_execute_math.f90: + Likewise. + * testsuite/libgomp.oacc-fortran/fortran-torture_execute_math.f90: + Likewise. + +2023-06-14 Thomas Schwinge <thomas@codesourcery.com> + + * testsuite/libgomp.fortran/fortran-torture_execute_math.f90: New. + * testsuite/libgomp.oacc-fortran/fortran-torture_execute_math.f90: + Likewise. + +2023-06-14 Thomas Schwinge <thomas@codesourcery.com> + + * testsuite/libgomp.c/target-51.c: Fix typo. + +2023-06-14 Tobias Burnus <tobias@codesourcery.com> + + * env.c (gomp_default_icv_values): Init default_device_var to + an nonconforming value - INT_MIN. + (initialize_env): After env-var parsing, set default_device_var to + device 0 unless OMP_TARGET_OFFLOAD=mandatory. + (omp_display_env): If default_device_var is INT_MIN, call + gomp_init_targets_once. + * icv-device.c (omp_get_default_device): Likewise. + * libgomp.texi (OMP_DEFAULT_DEVICE): Update init description. + (OpenMP 5.2 Impl. Status): Mark OMP_TARGET_OFFLOAD=mandatory as 'Y'. + * target.c (resolve_device): Improve error message device-num < 0 + with 'mandatory' and no no-host devices available. + (gomp_target_init): Set default-device-var if INT_MIN. + * testsuite/libgomp.c/target-48.c: New test. + * testsuite/libgomp.c/target-49.c: New test. + * testsuite/libgomp.c/target-50.c: New test. + * testsuite/libgomp.c/target-50a.c: New test. + * testsuite/libgomp.c/target-51.c: New test. + * testsuite/libgomp.c/target-52.c: New test. + * testsuite/libgomp.c/target-53.c: New test. + * testsuite/libgomp.c/target-54.c: New test. + 2023-06-13 Tobias Burnus <tobias@codesourcery.com> PR libgomp/109837 diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 909f1df..dadbbcc 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2023-06-14 Jonny Grant <jg@jguk.org> + + * doc/xml/manual/extensions.xml: Remove demangle exception + description and include. + * doc/html/manual/ext_demangling.html: Regenerate. + 2023-06-10 Hans-Peter Nilsson <hp@axis.com> * testsuite/27_io/basic_istream/ignore/wchar_t/94749.cc (main) |