From f2283073ceb6447c800e7234e20e63d0874e76c8 Mon Sep 17 00:00:00 2001 From: Juergen Keil Date: Sun, 9 Sep 2001 15:52:37 +0000 Subject: Don't use inline assembler version of swap32 using GCC asm extensions when compiling with a non-gcc compiler. CVS patchset: 593 CVS date: 2001/09/09 15:52:37 --- src/liba52/bitstream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/liba52/bitstream.h b/src/liba52/bitstream.h index 1f3c447c0..be15907e9 100644 --- a/src/liba52/bitstream.h +++ b/src/liba52/bitstream.h @@ -26,7 +26,7 @@ #else -# if defined (__i386__) +# if defined (__i386__) && defined(__GNUC__) # define swab32(x) __i386_swab32(x) static inline const uint32_t __i386_swab32(uint32_t x) -- cgit v1.2.3