freebsd-dev/contrib/compiler-rt/lib/builtins/powitf2.c

39 lines
858 B
C
Raw Normal View History

2010-10-21 19:02:02 +00:00
/* ===-- powitf2.cpp - Implement __powitf2 ---------------------------------===
*
* The LLVM Compiler Infrastructure
*
* This file is dual licensed under the MIT and the University of Illinois Open
* Source Licenses. See LICENSE.TXT for details.
2010-10-21 19:02:02 +00:00
*
* ===----------------------------------------------------------------------===
*
* This file implements __powitf2 for the compiler_rt library.
*
* ===----------------------------------------------------------------------===
*/
#include "int_lib.h"
2012-07-30 10:58:13 +00:00
#if _ARCH_PPC
2010-10-21 19:02:02 +00:00
/* Returns: a ^ b */
COMPILER_RT_ABI long double
2010-10-21 19:02:02 +00:00
__powitf2(long double a, si_int b)
{
const int recip = b < 0;
long double r = 1;
while (1)
{
if (b & 1)
r *= a;
b /= 2;
if (b == 0)
break;
a *= a;
}
return recip ? 1/r : r;
}
#endif