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