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.17-510-g24116fc


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  24116fcdbe55d58aa35fc77444ae71a9dec9fff6 (commit)
      from  ee091edf1a16312fff0cc3c6ae0116aded7f1dbf (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://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=24116fcdbe55d58aa35fc77444ae71a9dec9fff6

commit 24116fcdbe55d58aa35fc77444ae71a9dec9fff6
Author: Carlos O'Donell <carlos@redhat.com>
Date:   Sat Apr 6 10:53:54 2013 -0400

    s390/s390x: Undef PSEUDO before redef.
    
    The s390 and s390x sysdep.h files include the more generic sysdep.h.
    The more generic sysdep.h defines PSEUDO. This causes an annoying
    CPP warning saying the PSEUDO was redefined. This patch removes the
    warning by undefining PSEUDO before the redefinition. This is in line
    with what all the other machines do.
    
    ---
    
    2013-04-06  Carlos O'Donell  <carlos@redhat.com>
    
    	* sysdeps/s390/s390-32/sysdep.h: Undefine PSEUDO before redefinition.
    	* sysdeps/s390/s390-64/sysdep.h: Likewise.

diff --git a/sysdeps/s390/s390-32/sysdep.h b/sysdeps/s390/s390-32/sysdep.h
index d6296c1..aa438bd 100644
--- a/sysdeps/s390/s390-32/sysdep.h
+++ b/sysdeps/s390/s390-32/sysdep.h
@@ -65,6 +65,7 @@
 #define	syscall_error	__syscall_error
 #define mcount		_mcount
 
+#undef PSEUDO
 #define	PSEUDO(name, syscall_name, args) \
 lose: SYSCALL_PIC_SETUP				\
     basr %r1,0;					\
diff --git a/sysdeps/s390/s390-64/sysdep.h b/sysdeps/s390/s390-64/sysdep.h
index 46ad85a..57827f3 100644
--- a/sysdeps/s390/s390-64/sysdep.h
+++ b/sysdeps/s390/s390-64/sysdep.h
@@ -63,6 +63,7 @@
 #define	syscall_error	__syscall_error
 #define mcount		_mcount
 
+#undef PSEUDO
 #define	PSEUDO(name, syscall_name, args) \
 lose: SYSCALL_PIC_SETUP			\
   jg JUMPTARGET(syscall_error);		\

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

Summary of changes:
 sysdeps/s390/s390-32/sysdep.h |    1 +
 sysdeps/s390/s390-64/sysdep.h |    1 +
 2 files changed, 2 insertions(+), 0 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]