Change ASM_GLOBAL_DIRECTIVE to .globl for ARM.
authorJoseph Myers <joseph@codesourcery.com>
Tue, 10 Jul 2012 14:29:29 +0000 (14:29 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Tue, 10 Jul 2012 14:29:29 +0000 (14:29 +0000)
ports/ChangeLog.arm
ports/sysdeps/arm/sysdep.h

index 8cd383d..1aec3d4 100644 (file)
@@ -1,3 +1,8 @@
+2012-07-10  Joseph Myers  <joseph@codesourcery.com>
+
+       * sysdeps/arm/sysdep.h (ENTRY): Change ASM_GLOBAL_DIRECTIVE to
+       .globl.
+
 2012-07-05  Joseph Myers  <joseph@codesourcery.com>
 
        * sysdeps/arm/static-stubs.c: New file.
index 7800456..cd3d70b 100644 (file)
@@ -62,7 +62,7 @@
 
 /* Define an entry point visible from C.  */
 #define        ENTRY(name)                                                           \
-  ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(name);                                  \
+  .globl C_SYMBOL_NAME(name);                                                \
   ASM_TYPE_DIRECTIVE (C_SYMBOL_NAME(name),function)                          \
   .align ALIGNARG(4);                                                        \
   C_LABEL(name)                                                                      \