1 /* PR target/52375 */
2 
3 struct C { int c, d; };
4 
5 unsigned
foo(struct C * p)6 foo (struct C *p)
7 {
8   unsigned int b = 0, i;
9   for (i = 0; i < 64; i++)
10     b |= 0x80000000U >> p[i].c;
11   return b;
12 }
13