Skip to content
This repository was archived by the owner on May 21, 2019. It is now read-only.

Commit cd52eb3

Browse files
committed
powi: don't override arm calling convention
1 parent 84e545b commit cd52eb3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: lib/builtins/powidf2.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
/* Returns: a ^ b */
1818

19-
COMPILER_RT_ABI double
19+
double
2020
__powidf2(double a, si_int b)
2121
{
2222
const int recip = b < 0;

Diff for: lib/builtins/powisf2.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
/* Returns: a ^ b */
1818

19-
COMPILER_RT_ABI float
19+
float
2020
__powisf2(float a, si_int b)
2121
{
2222
const int recip = b < 0;

0 commit comments

Comments
 (0)