aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr38271.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr38271.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr38271.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr38271.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr38271.c
deleted file mode 100644
index 2c64a9b34..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr38271.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-Wuninitialized" } */
-
-struct xxx {
- short a;
- short b;
- void *c;
-};
-
-void bar(struct xxx);
-
-void foo(struct xxx *p, int i)
-{
- struct xxx s0 = *p;
- struct xxx s = s0;
- if (s.a) i++;
- bar(s);
-}