]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/pr8835-1.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr8835-1.c
1 /* { dg-do compile } */
2
3 struct s {
4 char c;
5 };
6
7 struct s
8 foo (void)
9 {
10 struct s s = { 0 };
11 return s;
12 }