arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git] / gcc / testsuite / gcc.dg / ipa / ipa-sra-5.c
blob8a7568119b1907d72f02b7ab28f3369e11529ab5
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fipa-sra -fdump-ipa-sra" } */
4 static int *
5 __attribute__((noinline,used))
6 ox (int *i, int *j)
8 return i;
11 int a;
13 int *caller (void)
15 int b = 10;
17 return ox (&a, &b);
19 /* { dg-final { scan-ipa-dump-times "Will split parameter" 0 "sra" } } */