aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/20031031-1.c
blob: baca2a00a944f617ffa79282973da5897c08fc70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile } */
/* { dg-options "-O1" } */

/* This program requires the SSA renamer to be run after the second DOM
   pass.  Test provided by Falk Hueffner as Bugzilla #12825.  */

struct floppy_raw_cmd {
  int flags, track;
} *raw_cmd, default_raw_cmd;

void
setup_format_params (void)
{
  raw_cmd = &default_raw_cmd;
  raw_cmd->track = 0;
  raw_cmd->flags = 0;
}