diff options
Diffstat (limited to 'contrib/reghunt/examples/28970.c')
-rw-r--r-- | contrib/reghunt/examples/28970.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/contrib/reghunt/examples/28970.c b/contrib/reghunt/examples/28970.c new file mode 100644 index 000000000..4b6839b16 --- /dev/null +++ b/contrib/reghunt/examples/28970.c @@ -0,0 +1,28 @@ +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; +} |