libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / c99-tgmath-4.c
blobf66bcdffaea38869157ee5f6256f123164ec689b
1 /* Test for <tgmath.h> in C99. */
2 /* Origin: Matt Austern <austern@apple.com>
3 /* { dg-do compile { target c99_runtime } } */
4 /* { dg-options "-std=iso9899:1999" } */
5 /* { dg-require-effective-target tgmath_h } */
7 /* Test that invoking type-generic pow on complex float invokes cpowf. */
8 #include <tgmath.h>
10 complex double foo(complex float x, float y)
12 return pow(x, y);
15 /* { dg-final { scan-assembler "cpowf" } } */