aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr27409.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr27409.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr27409.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr27409.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr27409.c
deleted file mode 100644
index 430e6c8cc..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr27409.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* { dg-do compile } */
-
-typedef struct {
- struct { } z;
-} thang_t;
-
-struct {
- short e;
- thang_t f;
- int g;
-} my_struct;
-
-void function(int blaz)
-{
- thang_t *fp = &my_struct.f;
- foo(fp);
-}