arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-fre-91.c
blob4999a3b66ab79173782ea022fa5607284a05040b
1 /* { dg-do compile } */
2 /* { dg-options "-O3 -fdump-tree-fre4" } */
4 extern void foo(void);
6 static int a[2], b, *c[2];
8 int main() {
9 for (b = 0; b < 2; b++)
10 c[b] = &a[1];
11 if (!c[0])
12 foo();
13 return 0;
16 /* Even when vectorizing we should eliminate the call to foo. */
17 /* { dg-final { scan-tree-dump-not "foo" "fre4" } } */