From afe6a4a0bebd4c90d0278fbbc509f6eecbee235a Mon Sep 17 00:00:00 2001 From: Ivan Kalvachev Date: Wed, 22 Feb 2006 10:28:44 +0000 Subject: Use native bswap32 instruction when __CPU__ is x86_64 instead of generic 386 code. Originally committed as revision 5049 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/bswap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavutil/bswap.h') diff --git a/libavutil/bswap.h b/libavutil/bswap.h index 6454904420..25d418c693 100644 --- a/libavutil/bswap.h +++ b/libavutil/bswap.h @@ -27,7 +27,7 @@ static always_inline uint16_t bswap_16(uint16_t x) static always_inline uint32_t bswap_32(uint32_t x) { -#if __CPU__ > 386 +#if __CPU__ != 386 __asm("bswap %0": "=r" (x) : #else -- cgit v1.2.3