diff options
author | Mark Mitchell <mark@codesourcery.com> | 2004-08-19 06:13:19 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2004-08-19 06:13:19 +0000 |
commit | 8c78a388c1fc661b14bb5ceb452561ffe64cf1dd (patch) | |
tree | d33d97eb9e0adb59f730ae237f4d60989782faa7 | |
parent | 7eda7cda0a59d5f461936c1d131c534bb7a6c8a2 (diff) | |
download | gcc-8c78a388c1fc661b14bb5ceb452561ffe64cf1dd.zip gcc-8c78a388c1fc661b14bb5ceb452561ffe64cf1dd.tar.gz gcc-8c78a388c1fc661b14bb5ceb452561ffe64cf1dd.tar.bz2 |
bpabi.c (__aeabi_ul2d): Give it default visibility.
* config/arm/bpabi.c (__aeabi_ul2d): Give it default visibility.
(__aeabi_ul2f): Likewise.
From-SVN: r86236
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/arm/bpabi.c | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e1d71ee..ba10047 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-08-18 Mark Mitchell <mark@codesourcery.com> + + * config/arm/bpabi.c (__aeabi_ul2d): Give it default visibility. + (__aeabi_ul2f): Likewise. + 2004-08-18 Richard Henderson <rth@redhat.com> * 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 7bdc161..2115aca 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); |