modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/pr38621.c (about) 1 /* PR target/38621 */ 2 struct s 3 { 4 char a[512]; 5 int b; 6 int c; 7 }; 8 9 long long 10 foo (struct s *p, int m, int r) 11 { 12 if (r == m) 13 p->b = 3; 14 p->c = 1; 15 return m; 16 }