aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/ia64/20090324-1.c
blob: d9aff6a18b43722d8f8858e2110fc7373ef7088c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile } */
/* { dg-options "-O3 -fmodulo-sched" } */

static char *place_region_bounds_x, *place_region_bounds_y;
static void read_place () {
  char msg[300];
  update_screen (msg);
}
static void alloc_and_load_placement_structs () {
  int i, j;
  for (j=0;
      j<100;
      j++) {
    place_region_bounds_x[i] = place_region_bounds_x[i-1];
    place_region_bounds_y[i] = place_region_bounds_y[i-1];
  }
}
void place_and_route () {
  read_place ();
  alloc_and_load_placement_structs ();
}