PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / 20061109-1.c
blob2ba30bf84e164939986f58b5ca620ba5343f4b40
1 /* { dg-do compile { target { int32plus } } } */
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 int b:24;
13 void
14 foo (struct a *t)
16 t->b = 32;