1 /* { dg-do compile } */
2 /* { dg-options "-O1" } */
3 
4 /* This program requires the SSA renamer to be run after the second DOM
5    pass.  Test provided by Falk Hueffner as Bugzilla #12825.  */
6 
7 struct floppy_raw_cmd {
8   int flags, track;
9 } *raw_cmd, default_raw_cmd;
10 
11 void
setup_format_params(void)12 setup_format_params (void)
13 {
14   raw_cmd = &default_raw_cmd;
15   raw_cmd->track = 0;
16   raw_cmd->flags = 0;
17 }
18