about summary refs log tree commit diff
path: root/ports
diff options
context:
space:
mode:
authorChris Metcalf <cmetcalf@tilera.com>2012-07-10 10:33:04 -0400
committerChris Metcalf <cmetcalf@tilera.com>2012-07-10 10:38:18 -0400
commit5f5bcf71f753089c82741578853c5c866d1839e1 (patch)
tree6037f7fa44f5fc2a5add302294a2ad5264b6cf4e /ports
parentcea48cfbdd63ae9f15c15426103343b3fd96cc11 (diff)
downloadglibc-5f5bcf71f753089c82741578853c5c866d1839e1.tar.gz
glibc-5f5bcf71f753089c82741578853c5c866d1839e1.tar.xz
glibc-5f5bcf71f753089c82741578853c5c866d1839e1.zip
tile: Convert ASM_GLOBAL_DIRECTIVE to .globl
Diffstat (limited to 'ports')
-rw-r--r--ports/ChangeLog.tile5
-rw-r--r--ports/sysdeps/tile/sysdep.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/ports/ChangeLog.tile b/ports/ChangeLog.tile
index ce8c3e07c6..3c61b8000d 100644
--- a/ports/ChangeLog.tile
+++ b/ports/ChangeLog.tile
@@ -1,3 +1,8 @@
+2012-07-10  Chris Metcalf  <cmetcalf@tilera.com>
+
+	* sysdeps/tile/sysdep.h (ENTRY): Use .globl, not
+	ASM_GLOBAL_DIRECTIVE.
+
 2012-05-30  Chris Metcalf  <cmetcalf@tilera.com>
 
 	* sysdeps/unix/sysv/linux/tile/tilegx/Makefile: Remove test
diff --git a/ports/sysdeps/tile/sysdep.h b/ports/sysdeps/tile/sysdep.h
index 58432eb032..34d7046595 100644
--- a/ports/sysdeps/tile/sysdep.h
+++ b/ports/sysdeps/tile/sysdep.h
@@ -30,7 +30,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 8;								      \
   C_LABEL(name)								      \