(__bswap_32): Add cast to avoid invalid asm.

This commit is contained in:
Andreas Schwab 2001-01-17 15:54:57 +00:00
parent ea3e9a37c0
commit 582f2b191d

View File

@ -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)