From 8c78a388c1fc661b14bb5ceb452561ffe64cf1dd Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Thu, 19 Aug 2004 06:13:19 +0000 Subject: [PATCH] bpabi.c (__aeabi_ul2d): Give it default visibility. * config/arm/bpabi.c (__aeabi_ul2d): Give it default visibility. (__aeabi_ul2f): Likewise. From-SVN: r86236 --- gcc/ChangeLog | 5 +++++ gcc/config/arm/bpabi.c | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e1d71eeab28..ba100470283 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-08-18 Mark Mitchell + + * config/arm/bpabi.c (__aeabi_ul2d): Give it default visibility. + (__aeabi_ul2f): Likewise. + 2004-08-18 Richard Henderson * config/xtensa/xtensa.c (xtensa_expand_block_move): Expand block diff --git a/gcc/config/arm/bpabi.c b/gcc/config/arm/bpabi.c index 7bdc161215c..2115aca0433 100644 --- a/gcc/config/arm/bpabi.c +++ b/gcc/config/arm/bpabi.c @@ -27,8 +27,9 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -extern double __aeabi_ul2d (unsigned long long); -extern float __aeabi_ul2f (unsigned long long); +#define VISIBLE __attribute__((visibility("default"))) +extern VISIBLE double __aeabi_ul2d (unsigned long long); +extern VISIBLE float __aeabi_ul2f (unsigned long long); extern long long __divdi3 (long long, long long); extern unsigned long long __udivdi3 (unsigned long long, unsigned long long); -- 2.30.2