aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/Wcxx-compat-11.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/Wcxx-compat-11.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/Wcxx-compat-11.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/Wcxx-compat-11.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/Wcxx-compat-11.c
deleted file mode 100644
index 8818338ad..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/Wcxx-compat-11.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-Wc++-compat" } */
-
-#include <stdarg.h>
-
-enum E { A };
-
-extern void f2 (int);
-void
-f1 (int n, ...)
-{
- va_list ap;
-
- va_start (ap, n);
- f2 (va_arg (ap, int));
- f2 (va_arg (ap, _Bool)); /* { dg-warning "promoted" } */
- f2 (va_arg (ap, enum E)); /* { dg-warning "promoted" } */
-}
-
-/* Match extra informative notes. */
-/* { dg-message "note:" "expected" { target *-*-* } 0 } */