Commit 8c78a388 by Mark Mitchell Committed by Mark Mitchell

bpabi.c (__aeabi_ul2d): Give it default visibility.

	* config/arm/bpabi.c (__aeabi_ul2d): Give it default visibility.
	(__aeabi_ul2f): Likewise.

From-SVN: r86236
parent 7eda7cda
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> 2004-08-18 Richard Henderson <rth@redhat.com>
* config/xtensa/xtensa.c (xtensa_expand_block_move): Expand block * config/xtensa/xtensa.c (xtensa_expand_block_move): Expand block
......
...@@ -27,8 +27,9 @@ ...@@ -27,8 +27,9 @@
the Free Software Foundation, 59 Temple Place - Suite 330, the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */ Boston, MA 02111-1307, USA. */
extern double __aeabi_ul2d (unsigned long long); #define VISIBLE __attribute__((visibility("default")))
extern float __aeabi_ul2f (unsigned long long); 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 long long __divdi3 (long long, long long);
extern unsigned long long __udivdi3 (unsigned long long, extern unsigned long long __udivdi3 (unsigned long long,
unsigned long long); unsigned long long);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment