diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-06-07 22:24:35 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-06-07 22:24:35 +0000 |
commit | 2e09a79ada1f6d92809a037d41895e3d9302ad59 (patch) | |
tree | 999c9d18279a7de289937116273ae4016356aa3a /bits/byteswap.h | |
parent | 8e254d8e0d0820716e0ccf5f2b89c4fd1325f051 (diff) | |
download | glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.tar glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.tar.gz glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.tar.bz2 glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.zip |
Avoid use of "register" as optimization hint.
Diffstat (limited to 'bits/byteswap.h')
-rw-r--r-- | bits/byteswap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bits/byteswap.h b/bits/byteswap.h index 57d34b461a..5a35084279 100644 --- a/bits/byteswap.h +++ b/bits/byteswap.h @@ -48,7 +48,7 @@ __bswap_32 (unsigned int __bsx) # else # define __bswap_32(x) \ (__extension__ \ - ({ register unsigned int __bsx = (x); __bswap_constant_32 (__bsx); })) + ({ unsigned int __bsx = (x); __bswap_constant_32 (__bsx); })) # endif #else static __inline unsigned int |