aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr37731-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr37731-2.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr37731-2.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr37731-2.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr37731-2.c
deleted file mode 100644
index a7f8f1e02..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/pr37731-2.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* { dg-do run } */
-
-extern void abort ();
-
-long long xh = 1;
-
-int
-main ()
-{
- long long yh = 0xffffffffll;
- long long z = xh * yh;
-
- if (z != yh)
- abort ();
-
- return 0;
-}