summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/debug/pr39412.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/debug/pr39412.c')
-rw-r--r--gcc/testsuite/gcc.dg/debug/pr39412.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc/testsuite/gcc.dg/debug/pr39412.c b/gcc/testsuite/gcc.dg/debug/pr39412.c
deleted file mode 100644
index 71b7b5e21a..0000000000
--- a/gcc/testsuite/gcc.dg/debug/pr39412.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/* PR debug/39412 */
-/* { dg-do compile } */
-
-struct S { int i; };
-
-inline void
-bar (const void *x, unsigned long y)
-{
- const union { struct S a[y]; } *u = x;
-}
-
-void
-foo (const void *x, unsigned long y)
-{
- bar (x, y);
-}