mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-18 08:51:06 +00:00
(__bswap_32): Add cast to avoid invalid asm.
This commit is contained in:
parent
ea3e9a37c0
commit
582f2b191d
@ -43,7 +43,7 @@
|
||||
"swap %0;" \
|
||||
"ror%.w %#8, %0" \
|
||||
: "=d" (__bswap_32_v) \
|
||||
: "0" (x)); \
|
||||
: "0" ((unsigned int) (x))); \
|
||||
__bswap_32_v; })
|
||||
#else
|
||||
# define __bswap_32(x) __bswap_constant_32 (x)
|
||||
|
Loading…
Reference in New Issue
Block a user