libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / recip_sqrt_mult_5.c
blob764fbcad18519a278a4fe0ce24141b3a05c9e017
1 /* { dg-do compile } */
2 /* { dg-options "-Ofast -fdump-tree-recip" } */
3 /* { dg-additional-options "-fcompare-debug" { target { ! powerpc-ibm-aix* } } } */
5 /* We want to do the recip_sqrt transformations here there is already
6 a multiplication on the main path. */
8 double res, res2, tmp;
9 void
10 foo (double a, double b, int c, int d)
12 tmp = 1.0 / __builtin_sqrt (a);
13 res = tmp * tmp;
15 if (d)
16 res2 = a * tmp;
19 /* { dg-final { scan-tree-dump "Optimizing reciprocal sqrt multiplications" "recip" } } */
20 /* { dg-final { scan-tree-dump "Replacing squaring multiplication" "recip" } } */
21 /* { dg-final { scan-tree-dump "Replacing original division" "recip" } } */