From: Chris Metcalf Date: Tue, 10 Jul 2012 14:33:04 +0000 (-0400) Subject: tile: Convert ASM_GLOBAL_DIRECTIVE to .globl X-Git-Tag: upstream/2.16.90~852 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5f5bcf71f753089c82741578853c5c866d1839e1;p=platform%2Fupstream%2Fglibc.git tile: Convert ASM_GLOBAL_DIRECTIVE to .globl --- diff --git a/ports/ChangeLog.tile b/ports/ChangeLog.tile index ce8c3e0..3c61b80 100644 --- a/ports/ChangeLog.tile +++ b/ports/ChangeLog.tile @@ -1,3 +1,8 @@ +2012-07-10 Chris Metcalf + + * sysdeps/tile/sysdep.h (ENTRY): Use .globl, not + ASM_GLOBAL_DIRECTIVE. + 2012-05-30 Chris Metcalf * sysdeps/unix/sysv/linux/tile/tilegx/Makefile: Remove test diff --git a/ports/sysdeps/tile/sysdep.h b/ports/sysdeps/tile/sysdep.h index 58432eb..34d7046 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) \