Skip to content

Commit

Permalink
Fix ia64 build after 7ec903e
Browse files Browse the repository at this point in the history
Fixes #2.
  • Loading branch information
johnny-mnemonic committed Sep 2, 2024
1 parent 3a6ada9 commit c4c7236
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions sysdeps/ia64/fpu/e_exp2.S
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ LOCAL_OBJECT_END(T_table)


.section .text
WEAK_LIBM_ENTRY(exp2)
GLOBAL_IEEE754_ENTRY(exp2)


{.mfi
Expand Down Expand Up @@ -492,7 +492,7 @@ OUT_RANGE_exp2:
}
;;

WEAK_LIBM_END(exp2)
GLOBAL_IEEE754_END(exp2)
libm_alias_double_other (__exp2, exp2)
#ifdef SHARED
.symver exp2,exp2@@GLIBC_2.29
Expand Down
4 changes: 2 additions & 2 deletions sysdeps/ia64/fpu/e_exp2f.S
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ LOCAL_OBJECT_END(T_table)


.section .text
WEAK_LIBM_ENTRY(exp2f)
GLOBAL_IEEE754_ENTRY(exp2f)


{.mfi
Expand Down Expand Up @@ -467,7 +467,7 @@ OUT_RANGE_exp2:
}
;;

WEAK_LIBM_END(exp2f)
GLOBAL_IEEE754_END(exp2f)
libm_alias_float_other (__exp2, exp2)
#ifdef SHARED
.symver exp2f,exp2f@@GLIBC_2.27
Expand Down
6 changes: 3 additions & 3 deletions sysdeps/ia64/fpu/e_exp2l.S
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ LOCAL_OBJECT_END(D_table)


.section .text
GLOBAL_LIBM_ENTRY(exp2l)
GLOBAL_IEEE754_ENTRY(exp2l)

{.mii
// get exponent
Expand Down Expand Up @@ -744,8 +744,8 @@ OUT_RANGE_exp2l:
}


GLOBAL_LIBM_END(exp2l)
libm_alias_ldouble_other (exp2, exp2)
GLOBAL_IEEE754_END(exp2l)
libm_alias_ldouble_other (__exp2, exp2)


LOCAL_LIBM_ENTRY(__libm_error_region)
Expand Down
1 change: 1 addition & 0 deletions sysdeps/ia64/fpu/s_expm1l.S
Original file line number Diff line number Diff line change
Expand Up @@ -676,6 +676,7 @@ GLOBAL_IEEE754_ENTRY(expm1l)
;;

GLOBAL_IEEE754_END(expm1l)
libm_hidden_def (__expm1l)
libm_alias_ldouble_other (__expm1, expm1)


Expand Down

0 comments on commit c4c7236

Please sign in to comment.