URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [mips/] [pr33635-1.c] - Rev 826
Compare with Previous | Blame | View Log
/* { dg-options "-mabi=64 -O2" } */ NOMIPS16 long double __powitf2 (long double x, int m) { long double y = x; while (m >>= 1) { x = x * x; if (m % 2) y = y * x; } return y; }