modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.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 }