fehler127: WTF - autobreak expects this to compile.
[libfirm] / ir / be / test / nested_loops2.c
1 #include <stdio.h>
2
3 int k = 0;
4
5 static void
6 send_via_write() {
7   int r2 = k;
8   if ( r2 <= 2147483647 )
9   {
10   }
11   else
12   {
13     for (;;)
14     {
15       for (;;)
16       {
17         r2 = printf( "%d\n", r2 );
18 //      if ( r2 < 0 )
19         {
20           continue;
21         }
22         if ( r2 != 235 )
23           return;
24       }
25     }
26   }
27 }
28
29 int main()
30 {
31   send_via_write();
32   return 0;
33 }