[PATCH] Re-add calling emit_clobber in lower-subreg.cc's resolve_simple_move.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / sra-12.c
blob139c7d150d137bc598bff4606c572c9cca062028
1 /* Verify that SRA total scalarization will not be confused by padding. */
2 /* { dg-do compile } */
3 /* { dg-options "-O1 --param sra-max-scalarization-size-Ospeed=16 -fdump-tree-release_ssa" } */
5 struct S
7 int i;
8 unsigned short f1;
9 char f2;
10 unsigned short f3, f4;
14 int foo (struct S *p)
16 struct S l;
18 l = *p;
19 l.i++;
20 *p = l;
23 /* { dg-final { scan-tree-dump-times "l;" 0 "release_ssa" } } */