URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [c99-tgmath-4.c] - Rev 318
Go to most recent revision | Compare with Previous | Blame | View Log
/* 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-skip-if "<complex.h> missing" { alpha*-dec-osf5* } } */ /* 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" } } */
Go to most recent revision | Compare with Previous | Blame | View Log