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