aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/vla-9.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/vla-9.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/vla-9.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/vla-9.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/vla-9.c
deleted file mode 100644
index 506a1a2eb..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/vla-9.c
+++ /dev/null
@@ -1,10 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-std=c99 -pedantic-errors -W -Wall" } */
-/* PR c/28280 */
-
-void f(__SIZE_TYPE__ d)
-{
- typedef int t[d];
- t *g = (__typeof (g)) d;
- (void) g;
-}