aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/execute/loop-4.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/execute/loop-4.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/execute/loop-4.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc/testsuite/gcc.c-torture/execute/loop-4.c b/gcc/testsuite/gcc.c-torture/execute/loop-4.c
deleted file mode 100644
index b308aa27689..00000000000
--- a/gcc/testsuite/gcc.c-torture/execute/loop-4.c
+++ /dev/null
@@ -1,16 +0,0 @@
-int
-f()
-{
- int j = 1;
- long i;
- for (i = -0x70000000L; i < 0x60000000L; i += 0x10000000L) j <<= 1;
- return j;
-}
-
-int
-main ()
-{
- if (f () != 8192)
- abort ();
- exit (0);
-}