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

Commit c8a8767

Browse files
alexcrichtonTimNN
authored andcommitted
Merge pull request #26 from TimNN/arm-cc
powi only: don't override arm calling convention
2 parents 84e545b + cd52eb3 commit c8a8767

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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;

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)