- fixed r22803
[libfirm] / ir / be / test / fehler128.c
1 /*$ -march=i686 $*/
2
3 double __attribute__((__cdecl__)) atof (const char *__nptr);
4
5 int a;
6 char *str;
7
8 void GIB_Range_f (void)
9 {
10         double i, inc = 9, limit = 42;
11         if (a == 4) {
12                 inc = atof(str);
13                 if(inc == 0) return;
14         }
15         for (i = atof (str); inc < 0 ? i >= limit : i <= limit; i += inc) {
16         }
17 }
18
19 int main(void)
20 {
21         return 0;
22 }