2018-05-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / pr32374.c
blobde15d559f5b1a1c5c0c51a3fbbbf4514cee56815
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 extern int *stderr;
6 void f (int *, const char *, ...);
8 void g (const char *conf_name)
10 typedef struct
12 const char *label;
13 const int value;
14 } Section;
16 const Section sections[2] = { {"", 0}, {"", 1} };
18 f (stderr, "", "", conf_name, 0, sections[0]);
19 f (stderr, "", "", conf_name, 0, sections[0]);