[AArch64] Fix SVE testsuite failures for ILP32 (PR 83846)
[official-gcc.git] / gcc / testsuite / gcc.dg / cse_recip.c
blob88cba9930c0eb1fdee22a797eff110cd9a14fcda
1 /* { dg-do compile } */
2 /* { dg-options "-Ofast -fdump-tree-optimized-raw" } */
4 void
5 cse_recip (float x, float y, float *a)
7 a[0] = y / (5 * x);
8 a[1] = y / (3 * x);
9 a[2] = y / x;
12 /* { dg-final { scan-tree-dump-times "rdiv_expr" 1 "optimized" } } */