aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr57083.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr57083.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr57083.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr57083.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr57083.c
deleted file mode 100644
index 070a53d21..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr57083.c
+++ /dev/null
@@ -1,15 +0,0 @@
-/* PR tree-optimization/57083 */
-/* { dg-do run { target int32plus } } */
-
-extern void abort (void);
-short x = 1;
-int y = 0;
-
-int
-main ()
-{
- unsigned t = (0x7fff8001U - x) << (y == 0);
- if (t != 0xffff0000U)
- abort ();
- return 0;
-}