aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.0/contrib/reghunt/examples/28970.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.4.0/contrib/reghunt/examples/28970.c')
-rw-r--r--gcc-4.4.0/contrib/reghunt/examples/28970.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/gcc-4.4.0/contrib/reghunt/examples/28970.c b/gcc-4.4.0/contrib/reghunt/examples/28970.c
deleted file mode 100644
index 4b6839b16..000000000
--- a/gcc-4.4.0/contrib/reghunt/examples/28970.c
+++ /dev/null
@@ -1,28 +0,0 @@
-extern void abort (void);
-
-int tar (int i)
-{
- if (i != 36863)
- abort ();
- return -1;
-}
-
-void bug(int q, int bcount)
-{
- int j = 0;
- int outgo = 0;
-
- while(j != -1)
- {
- outgo++;
- if (outgo > q-1)
- outgo = q-1;
- j = tar (outgo*bcount);
- }
-}
-
-int main(void)
-{
- bug(5, 36863);
- return 0;
-}