summaryrefslogtreecommitdiff
path: root/compiler-rt/lib/builtins/powixf2.c
diff options
context:
space:
mode:
Diffstat (limited to 'compiler-rt/lib/builtins/powixf2.c')
-rw-r--r--compiler-rt/lib/builtins/powixf2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/builtins/powixf2.c b/compiler-rt/lib/builtins/powixf2.c
index b7b52095afa1..3edfe9fd7af5 100644
--- a/compiler-rt/lib/builtins/powixf2.c
+++ b/compiler-rt/lib/builtins/powixf2.c
@@ -16,7 +16,7 @@
// Returns: a ^ b
-COMPILER_RT_ABI long double __powixf2(long double a, si_int b) {
+COMPILER_RT_ABI long double __powixf2(long double a, int b) {
const int recip = b < 0;
long double r = 1;
while (1) {