move backend into libfirm
[libfirm] / ir / be / test / nested_loops2.c
1 static void
2 send_via_write() {
3   int r2;
4   if ( r2 <= 2147483647 )
5   {
6   }
7   else
8   {
9     for (;;)
10     {
11       for (;;)
12       {
13         r2 = printf( "%d\n", r2 );
14 //      if ( r2 < 0 )
15         {
16           continue;
17         }
18         if ( r2 != 235 )
19           return;
20       }
21     }
22   }
23 }
24
25 int main()
26 {
27   send_via_write();
28   return 0;
29 }