__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
This commit is contained in:
Reimar Döffinger
2008-02-24 14:46:22 +00:00
parent cf73e32a5f
commit 78d3d94f14
4 changed files with 21 additions and 21 deletions

View File

@@ -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");
}