bpabi.c (__aeabi_ul2d): Give it default visibility.
authorMark Mitchell <mark@codesourcery.com>
Thu, 19 Aug 2004 06:13:19 +0000 (06:13 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Thu, 19 Aug 2004 06:13:19 +0000 (06:13 +0000)
* config/arm/bpabi.c (__aeabi_ul2d): Give it default visibility.
(__aeabi_ul2f): Likewise.

From-SVN: r86236

gcc/ChangeLog
gcc/config/arm/bpabi.c

index e1d71eeab2888e9bd8795358a6f69939e4991f14..ba10047028327517c9884afeb7ffd5252b738e7c 100644 (file)
@@ -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
index 7bdc161215c2e68d58f72d8c1de348bcd12afdf8..2115aca0433dd94ec9f5b58d38f2af0169e018a9 100644 (file)
@@ -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);