summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/debug/pr78587.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/debug/pr78587.c')
-rw-r--r--gcc/testsuite/gcc.dg/debug/pr78587.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/gcc/testsuite/gcc.dg/debug/pr78587.c b/gcc/testsuite/gcc.dg/debug/pr78587.c
deleted file mode 100644
index b368a2ad71..0000000000
--- a/gcc/testsuite/gcc.dg/debug/pr78587.c
+++ /dev/null
@@ -1,23 +0,0 @@
-/* PR debug/78587 */
-/* { dg-do compile } */
-/* { dg-additional-options "-w" } */
-
-extern void bar (void);
-
-void
-foo (long long x)
-{
- x ^= 9223372036854775808ULL;
- bar ();
-}
-
-struct S { int w[4]; } a[1], b;
-
-void
-baz ()
-{
- int e = (int) baz;
- if (e <= -80)
- e = 0;
- b = a[e];
-}