Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / 20031031-1.c
blobbaca2a00a944f617ffa79282973da5897c08fc70
1 /* { dg-do compile } */
2 /* { dg-options "-O1" } */
4 /* This program requires the SSA renamer to be run after the second DOM
5 pass. Test provided by Falk Hueffner as Bugzilla #12825. */
7 struct floppy_raw_cmd {
8 int flags, track;
9 } *raw_cmd, default_raw_cmd;
11 void
12 setup_format_params (void)
14 raw_cmd = &default_raw_cmd;
15 raw_cmd->track = 0;
16 raw_cmd->flags = 0;