aboutsummaryrefslogtreecommitdiff
path: root/gcc/d
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2023-10-30 00:17:23 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2023-10-30 00:17:23 +0000
commit39a11d8e0b9cc3ac5d7d1bfaef75639fc557fbe0 (patch)
treec50f69643e1b9f54a61656ad426e43a218fc529f /gcc/d
parent3c444fb2ff4c789744af1bda29422ec31360612e (diff)
downloadgcc-39a11d8e0b9cc3ac5d7d1bfaef75639fc557fbe0.zip
gcc-39a11d8e0b9cc3ac5d7d1bfaef75639fc557fbe0.tar.gz
gcc-39a11d8e0b9cc3ac5d7d1bfaef75639fc557fbe0.tar.bz2
Daily bump.
Diffstat (limited to 'gcc/d')
-rw-r--r--gcc/d/ChangeLog22
1 files changed, 22 insertions, 0 deletions
diff --git a/gcc/d/ChangeLog b/gcc/d/ChangeLog
index e561c46..b0a90cf 100644
--- a/gcc/d/ChangeLog
+++ b/gcc/d/ChangeLog
@@ -1,3 +1,25 @@
+2023-10-29 Iain Buclaw <ibuclaw@gdcproject.org>
+
+ PR d/110712
+ * d-codegen.cc (d_build_call): Update call to convert_for_argument.
+ * d-convert.cc (is_valist_parameter_type): New function.
+ (check_valist_conversion): New function.
+ (convert_for_assignment): Update signature. Add check whether
+ assigning va_list is permissible.
+ (convert_for_argument): Likewise.
+ * d-tree.h (convert_for_assignment): Update signature.
+ (convert_for_argument): Likewise.
+ * expr.cc (ExprVisitor::visit (AssignExp *)): Update call to
+ convert_for_assignment.
+
+2023-10-29 Iain Buclaw <ibuclaw@gdcproject.org>
+
+ * dmd/MERGE: Merge upstream dmd e48bc0987d.
+ * expr.cc (ExprVisitor::visit (NewExp *)): Update for new front-end
+ interface.
+ * runtime.def (NEWARRAYT): Remove.
+ (NEWARRAYIT): Remove.
+
2023-10-28 Iain Buclaw <ibuclaw@gdcproject.org>
PR d/112270