URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [pr19402-1.c] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
/* { 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_" } } */
Go to most recent revision | Compare with Previous | Blame | View Log