Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / ia64 / 20090324-1.c
blobc44e8099267c081cf953dfb6cb6467f94441d99a
1 /* { dg-do compile } */
2 /* { dg-options "-O3 -fmodulo-sched" } */
4 void update_screen (char *);
5 static char *place_region_bounds_x, *place_region_bounds_y;
6 static void read_place () {
7 char msg[300];
8 update_screen (msg);
10 static void alloc_and_load_placement_structs () {
11 int i, j;
12 for (j=0;
13 j<100;
14 j++) {
15 place_region_bounds_x[i] = place_region_bounds_x[i-1];
16 place_region_bounds_y[i] = place_region_bounds_y[i-1];
19 void place_and_route () {
20 read_place ();
21 alloc_and_load_placement_structs ();