d: Add -Wvarargs warning flag to the D front-end
authorIain Buclaw <ibuclaw@gdcproject.org>
Thu, 16 Jul 2020 16:56:18 +0000 (18:56 +0200)
committerIain Buclaw <ibuclaw@gdcproject.org>
Thu, 30 Jul 2020 21:44:31 +0000 (23:44 +0200)
The D front-end has C-style variadic functions and va_start/va_arg, so
it is right to also have warnings for inproper use.

gcc/d/ChangeLog:

PR d/96154
* gdc.texi (Warnings): Document -Wvarargs.
* lang.opt: Add -Wvarargs

gcc/testsuite/ChangeLog:

PR d/96154
* gdc.dg/pr96154a.d: New test.
* gdc.dg/pr96154b.d: New test.

gcc/d/gdc.texi
gcc/d/lang.opt
gcc/testsuite/gdc.dg/pr96154a.d [new file with mode: 0644]
gcc/testsuite/gdc.dg/pr96154b.d [new file with mode: 0644]

index 2ce560f..9bc1297 100644 (file)
@@ -600,6 +600,12 @@ Warn when a @code{pragma()} is encountered that is not understood by
 where a pragma that is part of the D language, but not implemented by
 the compiler, won't get reported.
 
+@item -Wno-varargs
+@cindex Wvarargs
+@cindex Wno-varargs
+Do not warn upon questionable usage of the macros used to handle variable
+arguments like @code{va_start}.
+
 @item -fignore-unknown-pragmas
 @cindex @option{-fignore-unknown-pragmas}
 @cindex @option{-fno-ignore-unknown-pragmas}
index e14c83d..ade92d2 100644 (file)
@@ -146,6 +146,10 @@ Wunknown-pragmas
 D LangEnabledBy(D, Wall)
 ; Documented in C
 
+Wvarargs
+D
+; Documented in C
+
 X
 D
 Generate JSON file.
diff --git a/gcc/testsuite/gdc.dg/pr96154a.d b/gcc/testsuite/gdc.dg/pr96154a.d
new file mode 100644 (file)
index 0000000..8c0ca65
--- /dev/null
@@ -0,0 +1,18 @@
+// { dg-do compile }
+
+import core.stdc.stdarg;
+
+void
+error (int a)
+{
+  va_list vp;
+  va_start (vp, a); // { dg-error "used in function with fixed arguments" }
+}
+
+void
+warn (int a, int b, ...)
+{
+    va_list vp;
+    va_start (vp, a); // { dg-warning "second parameter" }
+    va_end (vp);
+}
diff --git a/gcc/testsuite/gdc.dg/pr96154b.d b/gcc/testsuite/gdc.dg/pr96154b.d
new file mode 100644 (file)
index 0000000..dec7f48
--- /dev/null
@@ -0,0 +1,19 @@
+// { dg-options "-Wno-varargs" }
+// { dg-do compile }
+
+import core.stdc.stdarg;
+
+void
+error (int a)
+{
+  va_list vp;
+  va_start (vp, a); // { dg-error "used in function with fixed arguments" }
+}
+
+void
+warn (int a, int b, ...)
+{
+    va_list vp;
+    va_start (vp, a); // No warning because of -Wno-varargs in effect.
+    va_end (vp);
+}