This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch, master, updated. glibc-2.16-ports-merge-25-gcea48cf


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  cea48cfbdd63ae9f15c15426103343b3fd96cc11 (commit)
      from  7b8e0d49cbfd8a911978d4b72f3d97e11a6d34ec (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=cea48cfbdd63ae9f15c15426103343b3fd96cc11

commit cea48cfbdd63ae9f15c15426103343b3fd96cc11
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Tue Jul 10 14:29:29 2012 +0000

    Change ASM_GLOBAL_DIRECTIVE to .globl for ARM.

diff --git a/ports/ChangeLog.arm b/ports/ChangeLog.arm
index 8cd383d..1aec3d4 100644
--- a/ports/ChangeLog.arm
+++ b/ports/ChangeLog.arm
@@ -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.
diff --git a/ports/sysdeps/arm/sysdep.h b/ports/sysdeps/arm/sysdep.h
index 7800456..cd3d70b 100644
--- a/ports/sysdeps/arm/sysdep.h
+++ b/ports/sysdeps/arm/sysdep.h
@@ -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)								      \

-----------------------------------------------------------------------

Summary of changes:
 ports/ChangeLog.arm        |    5 +++++
 ports/sysdeps/arm/sysdep.h |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]