Daily bump.

This commit is contained in:
GCC Administrator 2023-08-13 00:16:46 +00:00
parent 63fb0bedb8
commit adae87c162
7 changed files with 140 additions and 1 deletions

View 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

View File

@ -1 +1 @@
20230812
20230813

View 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

View 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

View 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

View 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

View 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