]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Sun, 13 Aug 2023 00:16:46 +0000 (00:16 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Sun, 13 Aug 2023 00:16:46 +0000 (00:16 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/m2/ChangeLog
gcc/testsuite/ChangeLog
libgm2/ChangeLog
libstdc++-v3/ChangeLog

index 88f082f5ade0bb96174be37db645e2ec589151a3..ed35c6b405c3181048b6e68d6d7e7e4662b9efea 100644 (file)
@@ -1,3 +1,29 @@
+2023-08-12  Jakub Jelinek  <jakub@redhat.com>
+
+       * Makefile.in (USER_H): Add stdckdint.h.
+       * ginclude/stdckdint.h: New file.
+
+2023-08-12  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+       PR target/110994
+       * config/riscv/riscv-opts.h (TARGET_VECTOR_VLS): Add TARGET_VETOR.
+
+2023-08-12  Patrick Palka  <ppalka@redhat.com>
+
+       * tree-pretty-print.cc (dump_generic_node) <case TREE_VEC>:
+       Delimit output with braces.
+
+2023-08-12  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+       PR target/110985
+       * config/riscv/riscv-v.cc (expand_vec_series): Refactor the expander.
+
+2023-08-12  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+       * config/riscv/autovec.md: Add VLS CONST_VECTOR.
+       * config/riscv/riscv.cc (riscv_const_insns): Ditto.
+       * config/riscv/vector.md: Ditto.
+
 2023-08-11  David Malcolm  <dmalcolm@redhat.com>
 
        PR analyzer/105899
index 23c3329c01edc06edd05d55c49c85a845a8b9c0f..5a8631e65d167ddc9e22526e47715fd50173111c 100644 (file)
@@ -1 +1 @@
-20230812
+20230813
index 6787769640e26fac9d2fd038373941095d362692..ba9d5a67a719806f773ab8270363b563db466301 100644 (file)
@@ -1,3 +1,11 @@
+2023-08-12  Patrick Palka  <ppalka@redhat.com>
+           Jason Merrill  <jason@redhat.com>
+
+       PR c++/106604
+       * decl.cc (redeclaration_error_message): Remove special handling
+       for deduction guides.
+       (grokfndecl): Give deduction guides a dummy DECL_INITIAL.
+
 2023-08-11  Patrick Palka  <ppalka@redhat.com>
 
        PR c++/110927
index 62b20693a172c5947d5dc77c69e4f851b1ebc681..3b5b44aef181a3d9680cdcca31ee2515ea361496 100644 (file)
@@ -1,3 +1,32 @@
+2023-08-12  Gaius Mulley  <gaiusmod2@gmail.com>
+
+       PR modula2/110779
+       * gm2-libs-iso/SysClock.mod (EpochTime): New procedure.
+       (GetClock): Call EpochTime if the C time functions are
+       unavailable.
+       * gm2-libs-iso/wrapclock.def (istimezone): New function
+       definition.
+
+2023-08-12  Gaius Mulley  <gaiusmod2@gmail.com>
+
+       PR modula2/108119
+       * Make-lang.in (M2RTE_PLUGIN_SO): Assigned to
+       plugin/m2rte$(exeext).so if enable_plugin is yes.
+       (m2.all.cross): Replace plugin/m2rte$(soext) with
+       $(M2RTE_PLUGIN_SO).
+       (m2.all.encap): Replace plugin/m2rte$(soext) with
+       $(M2RTE_PLUGIN_SO).
+       (m2.install-plugin): Add dummy rule when enable_plugin
+       is not yes.
+       (plugin/m2rte$(exeext).so): Add dummy rule when enable_plugin
+       is not yes.
+       (m2/stage2/cc1gm2$(exeext)): Replace plugin/m2rte$(soext) with
+       $(M2RTE_PLUGIN_SO).
+       (m2/stage1/cc1gm2$(exeext)): Replace plugin/m2rte$(soext) with
+       $(M2RTE_PLUGIN_SO).
+       * gm2spec.cc (lang_specific_driver): Set need_plugin to false
+       by default.
+
 2023-08-09  Gaius Mulley  <gaiusmod2@gmail.com>
 
        PR modula2/110779
index 152de7ed50a53c1581a44bce67fc252cb4117364..f3cb19e6c7f2d024c785f18d269286797478ac1f 100644 (file)
@@ -1,3 +1,52 @@
+2023-08-12  Gaius Mulley  <gaiusmod2@gmail.com>
+
+       PR modula2/108119
+       * gm2/iso/check/fail/iso-check-fail.exp (gm2_init_iso): Add -fm2-plugin.
+       * gm2/switches/auto-init/fail/switches-auto-init-fail.exp
+       (gm2_init_iso): Add -fm2-plugin.
+       * gm2/switches/check-all/pim2/fail/switches-check-all-pim2-fail.exp
+       (gm2_init_pim2): Add -fm2-plugin.
+       * gm2/switches/check-all/plugin/iso/fail/switches-check-all-plugin-iso-fail.exp
+       (gm2_init_iso): Add -fm2-plugin.
+       * gm2/switches/check-all/plugin/pim2/fail/switches-check-all-plugin-pim2-fail.exp
+       (gm2_init_pim2): Add -fm2-plugin.
+
+2023-08-12  Jakub Jelinek  <jakub@redhat.com>
+
+       * gcc.dg/stdckdint-1.c: New test.
+       * gcc.dg/stdckdint-2.c: New test.
+
+2023-08-12  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+       PR target/110994
+       * gcc.target/riscv/rvv/autovec/vls/pr110994.c: New test.
+
+2023-08-12  Patrick Palka  <ppalka@redhat.com>
+           Jason Merrill  <jason@redhat.com>
+
+       PR c++/106604
+       * g++.dg/cpp1z/class-deduction74.C: Expect "defined" instead
+       of "declared" in the repeated deduction guide diagnostics.
+       * g++.dg/cpp1z/class-deduction116.C: New test.
+
+2023-08-12  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+       PR target/110985
+       * gcc.target/riscv/rvv/autovec/vls-vlmax/pr110985.c: New test.
+
+2023-08-12  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+       * gcc.target/riscv/rvv/autovec/vls/def.h: Add VLS CONST_VECTOR tests.
+       * gcc.target/riscv/rvv/autovec/vls/const-1.c: New test.
+       * gcc.target/riscv/rvv/autovec/vls/const-2.c: New test.
+       * gcc.target/riscv/rvv/autovec/vls/const-3.c: New test.
+       * gcc.target/riscv/rvv/autovec/vls/const-4.c: New test.
+       * gcc.target/riscv/rvv/autovec/vls/const-5.c: New test.
+       * gcc.target/riscv/rvv/autovec/vls/series-1.c: New test.
+       * gcc.target/riscv/rvv/autovec/vls/series-2.c: New test.
+       * gcc.target/riscv/rvv/autovec/vls/series-3.c: New test.
+       * gcc.target/riscv/rvv/autovec/vls/series-4.c: New test.
+
 2023-08-11  David Malcolm  <dmalcolm@redhat.com>
 
        PR analyzer/105899
index 6dddfc7299a19b877133349df55cd9929c15f7fe..221384603c4f654d9053d3f60ac0a00542fc10e3 100644 (file)
@@ -1,3 +1,23 @@
+2023-08-12  Gaius Mulley  <gaiusmod2@gmail.com>
+
+       PR modula2/110779
+       * configure: Regenerate.
+       * configure.ac: Provide special case test for Darwin cross
+       configuration.
+       (GLIBCXX_CONFIGURE): New statement.
+       (GLIBCXX_CHECK_GETTIMEOFDAY): New statement.
+       (GLIBCXX_ENABLE_LIBSTDCXX_TIME): New statement.
+       * libm2iso/wrapclock.cc: New sys/time.h conditional include.
+       (sys/syscall.h): Conditional include.
+       (unistd.h): Conditional include.
+       (GetTimeRealtime): Re-implement.
+       (SetTimeRealtime): Re-implement.
+       (timezone): Re-implement.
+       (istimezone): New function.
+       (daylight): Re-implement.
+       (isdst): Re-implement.
+       (tzname): Re-implement.
+
 2023-08-09  Gaius Mulley  <gaiusmod2@gmail.com>
 
        PR modula2/110779
index dfc9c12cff1e7a97fcbe64863f1e7ff6ae1800a9..74556092b7e8676cc232c49cccb7219b7ee69ef9 100644 (file)
@@ -1,3 +1,10 @@
+2023-08-12  Ken Matsui  <kmatsui@gcc.gnu.org>
+
+       * include/std/type_traits (true_type): Use __bool_constant
+       instead.
+       (false_type): Likewise.
+       (bool_constant): Likewise.
+
 2023-08-11  Jonathan Wakely  <jwakely@redhat.com>
 
        PR libstdc++/110990