Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.target / mips / pr33635-1.c
blob34251e47fdf805b1c2f93e4d64d9400415bc197e
1 /* { dg-mips-options "-mabi=64 -O2" } */
3 NOMIPS16 long double __powitf2 (long double x, int m)
5 long double y = x;
6 while (m >>= 1)
8 x = x * x;
9 if (m % 2)
10 y = y * x;
12 return y;