From 78d3d94f14b90f0e400d8bc97e641b1f5e21c1e5 Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Sun, 24 Feb 2008 14:46:22 +0000 Subject: __asm __volatile -> asm volatile, improves code consistency and works (as far as that is possible) with the Sun C compiler. Originally committed as revision 12188 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dsputil.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/dsputil.h') diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 8160a0dd5a..5fe169eccd 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -520,7 +520,7 @@ void put_signed_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int li static inline void emms(void) { - __asm __volatile ("emms;":::"memory"); + asm volatile ("emms;":::"memory"); } -- cgit v1.2.3