PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / 20061109-2.c
blob30be434d53c347e567936efe4f2367fb5c44c34b
1 /* { dg-do compile } */
2 /* { dg-options "-O1" } */
4 /* This assignment might be implemented with a mem copy from the
5 literal pool with two BLKmode operands. This produced an ICE on S/390
6 since simplify_subreg was called for such a BLKmode operand. */
8 struct a
10 unsigned long b:24;
13 void
14 foo (struct a *t)
16 t->b = 32;