arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr91091-2.c
blob792541504903196e690295a035ff62181143b5fc
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-fre1" } */
4 struct s { int x; };
5 struct t { int x; };
7 void swap(struct s* p, struct t* q)
9 p->x = q->x;
10 q->x = p->x;
13 /* The second statement is redundant. */
14 /* { dg-final { scan-tree-dump-times "x = " 1 "fre1" { xfail { ! natural_alignment_32 } } } } */
15 /* { dg-final { scan-tree-dump-times " = \[^;\]*x;" 1 "fre1" } } */