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.15-1177-g36d54b7


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  36d54b744e269291d766e581623b0e349e67d7f0 (commit)
      from  929cc14e20cf7666db1042bed47ba0b634b66546 (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=36d54b744e269291d766e581623b0e349e67d7f0

commit 36d54b744e269291d766e581623b0e349e67d7f0
Author: Chung-Lin Tang <cltang@codesourcery.com>
Date:   Fri Jun 15 21:19:12 2012 +0200

    Make endian.h usable for assembler

diff --git a/ChangeLog b/ChangeLog
index f066a88..dd8fcc4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-06-15  Chung-Lin Tang  <cltang@codesourcery.com>
+
+	* string/endian.h: Add !__ASSEMBLER__ condition for including
+	conversion interfaces.
+
 2012-06-15  Joseph Myers  <joseph@codesourcery.com>
 
 	[BZ #14241]
diff --git a/string/endian.h b/string/endian.h
index 0c293f6..51084f1 100644
--- a/string/endian.h
+++ b/string/endian.h
@@ -55,7 +55,7 @@
 #endif
 
 
-#ifdef __USE_BSD
+#if defined __USE_BSD && !defined __ASSEMBLER__
 /* Conversion interfaces.  */
 # include <bits/byteswap.h>
 

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

Summary of changes:
 ChangeLog       |    5 +++++
 string/endian.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]