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-27-gba7fefc


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  ba7fefc8e00d027e0298d180aecce0689f660329 (commit)
       via  5f5bcf71f753089c82741578853c5c866d1839e1 (commit)
      from  cea48cfbdd63ae9f15c15426103343b3fd96cc11 (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=ba7fefc8e00d027e0298d180aecce0689f660329

commit ba7fefc8e00d027e0298d180aecce0689f660329
Author: Chris Metcalf <cmetcalf@tilera.com>
Date:   Tue Jul 10 10:35:27 2012 -0400

    tile: correct typo in comment

diff --git a/ports/ChangeLog.tile b/ports/ChangeLog.tile
index 3c61b80..aa9c52a 100644
--- a/ports/ChangeLog.tile
+++ b/ports/ChangeLog.tile
@@ -1,5 +1,8 @@
 2012-07-10  Chris Metcalf  <cmetcalf@tilera.com>
 
+	* sysdeps/unix/sysv/linux/tile/makecontext.c (__makecontext):
+	Correct typo in comment.
+
 	* sysdeps/tile/sysdep.h (ENTRY): Use .globl, not
 	ASM_GLOBAL_DIRECTIVE.
 
diff --git a/ports/sysdeps/unix/sysv/linux/tile/makecontext.c b/ports/sysdeps/unix/sysv/linux/tile/makecontext.c
index e3f66bc..d7584e0 100644
--- a/ports/sysdeps/unix/sysv/linux/tile/makecontext.c
+++ b/ports/sysdeps/unix/sysv/linux/tile/makecontext.c
@@ -61,7 +61,7 @@ __makecontext (ucontext_t *ucp, void (*func) (void), int argc, ...)
   /* Set the return address to trampoline.  */
   ucp->uc_mcontext.lr = (long) __startcontext;
 
-  /* Pass ucp->uc_link to __start_context in r30.  */
+  /* Pass ucp->uc_link to __startcontext in r30.  */
   ucp->uc_mcontext.gregs[30] = (long) ucp->uc_link;
 }
 weak_alias (__makecontext, makecontext)

http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=5f5bcf71f753089c82741578853c5c866d1839e1

commit 5f5bcf71f753089c82741578853c5c866d1839e1
Author: Chris Metcalf <cmetcalf@tilera.com>
Date:   Tue Jul 10 10:33:04 2012 -0400

    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  <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 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)								      \

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

Summary of changes:
 ports/ChangeLog.tile                             |    8 ++++++++
 ports/sysdeps/tile/sysdep.h                      |    2 +-
 ports/sysdeps/unix/sysv/linux/tile/makecontext.c |    2 +-
 3 files changed, 10 insertions(+), 2 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]