2006-08-24  Ulrich Drepper  <drepper@redhat.com>
	[BZ #2734]
	* sysdeps/i386/bits/byteswap.h (__bswap_32): Use same conditions
	as in the x86-64 code to use bswap.
This commit is contained in:
Ulrich Drepper 2006-08-24 07:09:54 +00:00
parent 2498279821
commit 542a6f62af
4 changed files with 33 additions and 10 deletions

View File

@ -1,3 +1,9 @@
2006-08-24 Ulrich Drepper <drepper@redhat.com>
[BZ #2734]
* sysdeps/i386/bits/byteswap.h (__bswap_32): Use same conditions
as in the x86-64 code to use bswap.
2006-05-21 Joseph S. Myers <joseph@codesourcery.com>
[BZ #2680]

View File

@ -1,3 +1,9 @@
2006-08-24 Ulrich Drepper <drepper@redhat.com>
[BZ #2695]
* locales/et_EE: Update LC_ADDRESS category.
Patch by Priit Laes <amd@store20.com>.
2006-08-23 Ulrich Drepper <drepper@redhat.com>
[BZ #2662]

View File

@ -2228,12 +2228,22 @@ name_fmt "<U0025><U0064><U0025><U0074><U0025><U0067><U0025><U0074>/
END LC_NAME
LC_ADDRESS
postal_fmt "<U0025><U0066><U0025><U004E><U0025><U0061><U0025><U004E>/
<U0025><U0064><U0025><U004E><U0025><U0062><U0025><U004E><U0025><U0073>/
<U0020><U0025><U0068><U0020><U0025><U0065><U0020><U0025><U0072><U0025>/
<U004E><U0025><U0025><U007A><U0020><U0025><U0054><U0025>/
<U004E><U0025><U0063><U0025><U004E>"
country_ab2 "<U0045><U0045>"
country_ab3 "<U0045><U0053><U0054>"
country_num 233
postal_fmt "<U0025><U0061><U0025><U004E>/
<U0025><U0066><U0025><U004E>/
<U0025><U0064><U0025><U004E>/
<U0025><U0062><U0025><U004E>/
<U0025><U0073><U0025><U0074><U0025><U0068><U0025><U0074><U0025><U0065><U0025><U0074><U0025><U0072><U0025><U004E>/
<U0025><U0043><U002D><U0025><U007A><U0020><U0025><U0054><U0025><U004E>/
<U0025><U0063><U0025><U004E>"
country_name "<U0045><U0065><U0073><U0074><U0069>"
country_post "<U0045><U0045>"
country_ab2 "<U0045><U0045>"
country_ab3 "<U0045><U0053><U0054>"
country_num 233
country_car "<U0045><U0053><U0054>"
country_isbn "<U0039><U0039><U0038><U0035>"
lang_name "<U0065><U0065><U0073><U0074><U0069><U0020><U006B><U0065><U0065><U006C>"
lang_ab "<U0065><U0074>"
lang_term "<U0065><U0073><U0074>"
lang_lib "<U0065><U0073><U0074>"
END LC_ADDRESS

View File

@ -1,5 +1,5 @@
/* Macros to swap the order of bytes in integer values.
Copyright (C) 1997, 1998, 2000, 2002, 2003 Free Software Foundation, Inc.
Copyright (C) 1997,1998,2000,2002,2003,2006 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -65,7 +65,8 @@ __bswap_16 (unsigned short int __bsx)
/* To swap the bytes in a word the i486 processors and up provide the
`bswap' opcode. On i386 we have to use three instructions. */
# if !defined __i486__ && !defined __pentium__ && !defined __pentiumpro__ \
&& !defined __pentium4__
&& !defined __pentium4__ && !defined __k8__ && !defined __athlon__ \
&& !defined __k6__
# define __bswap_32(x) \
(__extension__ \
({ register unsigned int __v, __x = (x); \