aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorIain Buclaw <ibuclaw@gdcproject.org>2023-03-03 20:39:59 +0100
committerIain Buclaw <ibuclaw@gdcproject.org>2023-03-03 20:40:36 +0100
commit1f83aee5864129c4147a95c1a4e35d37c7eb7e59 (patch)
tree7b491f730cf5869c5427be5fcbee1114d2081467 /gcc
parent8be49eb927e1e65a715bc6eb73b9ce271c8b24c2 (diff)
downloadgcc-1f83aee5864129c4147a95c1a4e35d37c7eb7e59.zip
gcc-1f83aee5864129c4147a95c1a4e35d37c7eb7e59.tar.gz
gcc-1f83aee5864129c4147a95c1a4e35d37c7eb7e59.tar.bz2
d: Document that TypeInfo-based va_arg is not implemented
PR d/108763 gcc/d/ChangeLog: * implement-d.texi (Missing Features): Document that TypeInfo-based va_arg is not implemented.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/d/implement-d.texi6
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/d/implement-d.texi b/gcc/d/implement-d.texi
index 89a1791..039e5fb 100644
--- a/gcc/d/implement-d.texi
+++ b/gcc/d/implement-d.texi
@@ -2511,4 +2511,10 @@ version (GNU)
@}
@end smallexample
+@item TypeInfo-based va_arg
+The Digital Mars D compiler implements a version of @code{core.vararg.va_arg}
+that accepts a run-time @code{TypeInfo} argument for use when the static type
+is not known. This function is not implemented by GNU D. It is more portable
+to use variadic template functions instead.
+
@end table