From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23779 invoked by alias); 9 Mar 2008 12:52:00 -0000 Received: (qmail 23733 invoked by uid 22791); 9 Mar 2008 12:51:50 -0000 X-Spam-Check-By: sourceware.org Received: from ns.suse.de (HELO mx1.suse.de) (195.135.220.2) by sourceware.org (qpsmtpd/0.31) with ESMTP; Sun, 09 Mar 2008 12:51:30 +0000 Received: from Relay2.suse.de (relay-ext.suse.de [195.135.221.8]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.suse.de (Postfix) with ESMTP id 7DAB134380 for ; Sun, 9 Mar 2008 13:51:27 +0100 (CET) From: Andreas Jaeger To: libc-hacker@sources.redhat.com Subject: BZ 5753: Use protected namespace OpenPGP: id=C272A126; url=http://www.suse.de/~aj/keys.txt Date: Sun, 09 Mar 2008 12:52:00 -0000 Message-ID: <87fxv0kqly.fsf@suse.de> User-Agent: Gnus/5.110007 (No Gnus v0.7) Emacs/22.1 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" Mailing-List: contact libc-hacker-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sourceware.org X-SW-Source: 2008-03/txt/msg00003.txt.bz2 --=-=-= Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Content-length: 3670 The following is IMO mainly cosmetics. We use everywhere else in the file already the protected namespace, so let's be consistent in the installed file. Ok to commit? Andreas 2008-03-09 Andreas Jaeger [BZ #5753] * sysdeps/ia64/ieee754.h: Use protected namespace __BIG_ENDIAN/__LITTLE_ENDIAN. * sysdeps/ieee754/ieee754.h: Likewise. Patch by Aurelien Jarno . =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Index: sysdeps/ieee754/ieee754.h --- sysdeps/ieee754/ieee754.h 6 Jul 2001 04:55:54 -0000 1.12 +++ sysdeps/ieee754/ieee754.h 9 Mar 2008 12:49:00 -0000 @@ -80,7 +80,7 @@ union ieee754_double unsigned int mantissa1:32; #endif /* Big endian. */ #if __BYTE_ORDER =3D=3D __LITTLE_ENDIAN -# if __FLOAT_WORD_ORDER =3D=3D BIG_ENDIAN +# if __FLOAT_WORD_ORDER =3D=3D __BIG_ENDIAN unsigned int mantissa0:20; unsigned int exponent:11; unsigned int negative:1; @@ -106,7 +106,7 @@ union ieee754_double unsigned int mantissa0:19; unsigned int mantissa1:32; #else -# if __FLOAT_WORD_ORDER =3D=3D BIG_ENDIAN +# if __FLOAT_WORD_ORDER =3D=3D __BIG_ENDIAN unsigned int mantissa0:19; unsigned int quiet_nan:1; unsigned int exponent:11; @@ -142,7 +142,7 @@ union ieee854_long_double unsigned int mantissa1:32; #endif #if __BYTE_ORDER =3D=3D __LITTLE_ENDIAN -# if __FLOAT_WORD_ORDER =3D=3D BIG_ENDIAN +# if __FLOAT_WORD_ORDER =3D=3D __BIG_ENDIAN unsigned int exponent:15; unsigned int negative:1; unsigned int empty:16; @@ -171,7 +171,7 @@ union ieee854_long_double unsigned int mantissa1:32; #endif #if __BYTE_ORDER =3D=3D __LITTLE_ENDIAN -# if __FLOAT_WORD_ORDER =3D=3D BIG_ENDIAN +# if __FLOAT_WORD_ORDER =3D=3D __BIG_ENDIAN unsigned int exponent:15; unsigned int negative:1; unsigned int empty:16; =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Index: sysdeps/ia64/ieee754.h --- sysdeps/ia64/ieee754.h 6 Jul 2001 04:55:54 -0000 1.2 +++ sysdeps/ia64/ieee754.h 9 Mar 2008 12:49:00 -0000 @@ -80,7 +80,7 @@ union ieee754_double unsigned int mantissa1:32; #endif /* Big endian. */ #if __BYTE_ORDER =3D=3D __LITTLE_ENDIAN -# if __FLOAT_WORD_ORDER =3D=3D BIG_ENDIAN +# if __FLOAT_WORD_ORDER =3D=3D __BIG_ENDIAN unsigned int mantissa0:20; unsigned int exponent:11; unsigned int negative:1; @@ -106,7 +106,7 @@ union ieee754_double unsigned int mantissa0:19; unsigned int mantissa1:32; #else -# if __FLOAT_WORD_ORDER =3D=3D BIG_ENDIAN +# if __FLOAT_WORD_ORDER =3D=3D __BIG_ENDIAN unsigned int mantissa0:19; unsigned int quiet_nan:1; unsigned int exponent:11; @@ -143,7 +143,7 @@ union ieee854_long_double unsigned int mantissa1:32; #endif #if __BYTE_ORDER =3D=3D __LITTLE_ENDIAN -# if __FLOAT_WORD_ORDER =3D=3D BIG_ENDIAN +# if __FLOAT_WORD_ORDER =3D=3D __BIG_ENDIAN unsigned int empty0:32; unsigned int exponent:15; unsigned int negative:1; @@ -175,7 +175,7 @@ union ieee854_long_double unsigned int mantissa1:32; #endif #if __BYTE_ORDER =3D=3D __LITTLE_ENDIAN -# if __FLOAT_WORD_ORDER =3D=3D BIG_ENDIAN +# if __FLOAT_WORD_ORDER =3D=3D __BIG_ENDIAN unsigned int empty0:32; unsigned int exponent:15; unsigned int negative:1; --=20 Andreas Jaeger, Director Platform / openSUSE, aj@suse.de SUSE LINUX Products GmbH, GF: Markus Rex, HRB 16746 (AG N=FCrnberg) Maxfeldstr. 5, 90409 N=FCrnberg, Germany GPG fingerprint =3D 93A3 365E CE47 B889 DF7F FED1 389A 563C C272 A126 --=-=-= Content-Type: application/pgp-signature Content-length: 193 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4-svn0 (GNU/Linux) iD8DBQFH091LOJpWPMJyoSYRAnK4AJ9C55K7NZ1aRHc3lGc7toH6U1JgmwCfV8gg cKlVce8TTSQPIMZ5T1dnU78= =gu1E -----END PGP SIGNATURE----- --=-=-=--