2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / webizer.c
blob4f03037c500b45f077965d827e1d025d63071b33
1 /* { dg-do run } */
2 /* { dg-options "-O3 -funroll-loops" } */
3 typedef struct rowbox {
4 int startx ;
5 int endx ;
6 int endx1 ;
7 int startx2 ;
8 int ypos ;
9 int desiredL ;
10 } ROWBOX ;
11 ROWBOX rowArray1[3] ;
12 ROWBOX *rowArray = rowArray1;
14 int numRows = 2;
16 int row = 1;
17 int block = 0;
18 double ckt_size_factor ;
20 __attribute__ ((noinline))
21 configure2()
23 block = 0 ;
24 for( row = 1 ; row <= numRows ; row++ ) {
25 block++ ;
26 if( rowArray[row].endx1 > 0 ) {
27 block++ ;
32 main()
34 configure2();
35 __builtin_exit (0);