libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / recip_sqrt_mult_2.c
blobfe40bf7d791a2b7ba3c9618ddf23faec4e5e2297
1 /* { dg-do compile } */
2 /* { dg-options "-Ofast -fdump-tree-optimized" } */
3 /* { dg-additional-options "-fcompare-debug" { target { ! powerpc-ibm-aix* } } } */
5 float
6 foo (float a)
8 float tmp = 1.0f / __builtin_sqrtf (a);
9 return a * tmp;
12 /* { dg-final { scan-tree-dump-not " / " "optimized" } } */