diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/pr19402-1.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/pr19402-1.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/pr19402-1.c b/gcc/testsuite/gcc.dg/pr19402-1.c new file mode 100644 index 000000000..866ac63cb --- /dev/null +++ b/gcc/testsuite/gcc.dg/pr19402-1.c @@ -0,0 +1,29 @@ +/* { dg-do compile } */ +/* { dg-options "" } */ + +float test_powif(float x) +{ + return __builtin_powif(x, -1) + + __builtin_powif(x, 0) + + __builtin_powif(x, 1) + + __builtin_powif(x, 2); +} + +double test_powi(double x) +{ + return __builtin_powi(x, -1) + + __builtin_powi(x, 0) + + __builtin_powi(x, 1) + + __builtin_powi(x, 2); +} + +long double test_powil(long double x) +{ + return __builtin_powil(x, -1) + + __builtin_powil(x, 0) + + __builtin_powil(x, 1) + + __builtin_powil(x, 2); +} + +/* { dg-final { scan-assembler-not "__builtin_" } } */ + |