view gcc/testsuite/gcc.dg/c99-tgmath-4.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
line wrap: on
line source

/* Test for <tgmath.h> in C99. */
/* Origin: Matt Austern <austern@apple.com>
/* { dg-do compile { target c99_runtime } } */
/* { dg-options "-std=iso9899:1999" } */
/* { dg-add-options c99_runtime } */
/* { dg-require-effective-target tgmath_h } */

/* Test that invoking type-generic pow on complex float invokes cpowf. */
#include <tgmath.h>

complex double foo(complex float x, float y)
{
  return pow(x, y);
}

/* { dg-final { scan-assembler "cpowf" } } */