PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / builtins-59.c
blobc9b685c83ed3cce2a772ce584f5901a45b46a36a
1 /* { dg-do compile } */
2 /* { dg-options "-fdump-tree-gimple" } */
3 /* { dg-require-effective-target c99_runtime } */
4 /* { dg-require-effective-target libc_has_complex_functions } */
6 double test (double x)
8 double s, c;
9 __builtin_sincos (x, &s, &c);
10 return s + c;
13 /* { dg-final { scan-tree-dump "__builtin_cexpi" "gimple" } } */
14 /* { dg-final { scan-tree-dump-not "sincos" "gimple" } } */