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

Commit

Permalink
Merge pull request #26 from TimNN/arm-cc
Browse files Browse the repository at this point in the history
powi only: don't override arm calling convention
  • Loading branch information
alexcrichton authored and TimNN committed Apr 23, 2017
2 parents 84e545b + cd52eb3 commit c8a8767
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/builtins/powidf2.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

/* Returns: a ^ b */

COMPILER_RT_ABI double
double
__powidf2(double a, si_int b)
{
const int recip = b < 0;
Expand Down
2 changes: 1 addition & 1 deletion lib/builtins/powisf2.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

/* Returns: a ^ b */

COMPILER_RT_ABI float
float
__powisf2(float a, si_int b)
{
const int recip = b < 0;
Expand Down

0 comments on commit c8a8767

Please sign in to comment.