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]

Community source repository for glibc add-on ports branch, master, updated. glibc-2.12-26-gcf64098


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 "Community source repository for glibc add-on ports".

The branch, master has been updated
       via  cf64098fc4aef77a4b708e5d92aedced16964390 (commit)
      from  9ed28e47dc21521ca404d36d114c651c7cee42bf (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-ports.git;a=commitdiff;h=cf64098fc4aef77a4b708e5d92aedced16964390

commit cf64098fc4aef77a4b708e5d92aedced16964390
Author: Andreas Schwab <schwab@linux-m68k.org>
Date:   Wed Aug 25 22:55:55 2010 +0200

    m68k: fix SYSCALL_ERROR_LOAD_GOT for Coldfire

diff --git a/ChangeLog.m68k b/ChangeLog.m68k
index 9b07523..e66559a 100644
--- a/ChangeLog.m68k
+++ b/ChangeLog.m68k
@@ -1,3 +1,8 @@
+2010-08-25  Andreas Schwab  <schwab@linux-m68k.org>
+
+	* sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h
+	(SYSCALL_ERROR_LOAD_GOT): Use & instead of #.
+
 2010-08-17  Andreas Schwab  <schwab@linux-m68k.org>
 
 	* sysdeps/unix/sysv/linux/m68k/syscalls.list: Remove
diff --git a/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h b/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h
index e129dc1..bbbb156 100644
--- a/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h
+++ b/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h
@@ -24,7 +24,7 @@
 #include <sysdeps/unix/sysv/linux/m68k/sysdep.h>
 
 #define SYSCALL_ERROR_LOAD_GOT(reg)					      \
-    move.l #_GLOBAL_OFFSET_TABLE_@GOTPC, reg;				      \
+    move.l &_GLOBAL_OFFSET_TABLE_@GOTPC, reg;				      \
     lea (-6, %pc, reg), reg
 
 #endif

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

Summary of changes:
 ChangeLog.m68k                                 |    5 +++++
 sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Community source repository for glibc add-on ports


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