diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/c99-vla-1.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/c99-vla-1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/c99-vla-1.c b/gcc/testsuite/gcc.dg/c99-vla-1.c index 0378ce38bcd..4a3a0f8e238 100644 --- a/gcc/testsuite/gcc.dg/c99-vla-1.c +++ b/gcc/testsuite/gcc.dg/c99-vla-1.c @@ -5,7 +5,7 @@ void tdef (int n) { - typedef int A[n]; /* { dg-bogus "forbids variable-size array" } */ + typedef int A[n]; /* { dg-bogus "forbids variable length array" } */ A a; A *p; p = &a; |