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