diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-02-24 14:46:22 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-02-24 14:46:22 +0000 |
commit | 78d3d94f14b90f0e400d8bc97e641b1f5e21c1e5 (patch) | |
tree | 859951f155702aa70213ec3d3ee638d2579030dd /libavcodec/dsputil.h | |
parent | cf73e32a5fa7aa202fa8279972b217f56b243548 (diff) | |
download | ffmpeg-78d3d94f14b90f0e400d8bc97e641b1f5e21c1e5.tar.gz |
__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
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 1 insertions, 1 deletions
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"); } |