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