2014-07-29 Ed Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / gcc / testsuite / gcc.dg / c99-tgmath-2.c
blobd4f1f87cfa93bed1f1bff928d5049c07ad762ec7
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-add-options c99_runtime } */
7 /* Test that invoking type-generic sin on a float invokes sinf. */
8 #include <tgmath.h>
10 float foo(float x)
12 return sin(x);
15 /* { dg-final { scan-assembler "sinf" } } */