aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/array-const-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/array-const-1.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/array-const-1.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/array-const-1.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/array-const-1.c
deleted file mode 100644
index 0e0c46224..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/array-const-1.c
+++ /dev/null
@@ -1,8 +0,0 @@
-/* Test for array designators not integer constant expressions but
- folding to integer constants (used in Linux kernel,
- <http://gcc.gnu.org/ml/gcc/2009-04/msg00611.html>). */
-/* { dg-do compile } */
-/* { dg-options "-std=gnu99" } */
-
-extern int i;
-int a[] = { [1 ? 1 : i] = 0 };