PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / slsr-27.c
blob35b3d00ee44a5b6edd1d0616e242b0e6eb49cc80
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-dom3" } */
4 struct x
6 int a[16];
7 int b[16];
8 int c[16];
9 };
11 extern void foo (int, int, int);
13 void
14 f (struct x *p, unsigned int n)
16 foo (p->a[n], p->c[n], p->b[n]);
19 /* { dg-final { scan-tree-dump-times "\\* 4;" 1 "dom3" { target { int32 } } } } */
20 /* { dg-final { scan-tree-dump-times "\\* 2;" 1 "dom3" { target { int16 } } } } */
21 /* { dg-final { scan-tree-dump-times "p_\\d\+\\(D\\) \\+ \[^\r\n\]*_\\d\+;" 1 "dom3" } } */
22 /* { dg-final { scan-tree-dump-times "MEM\\\[\\(struct x \\*\\)\[^\r\n\]*_\\d\+" 3 "dom3" } } */