1 /* PR target/38621  */
2 struct s
3 {
4   char a[512];
5   int b;
6   int c;
7 };
8 
9 long long
foo(struct s * p,int m,int r)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 }
17