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/armv4l | |
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/armv4l')
-rw-r--r-- | libavcodec/armv4l/dsputil_iwmmxt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/armv4l/dsputil_iwmmxt.c b/libavcodec/armv4l/dsputil_iwmmxt.c index 62dcfab0c1..18329ddf6b 100644 --- a/libavcodec/armv4l/dsputil_iwmmxt.c +++ b/libavcodec/armv4l/dsputil_iwmmxt.c @@ -125,7 +125,7 @@ void add_pixels_clamped_iwmmxt(const DCTELEM *block, uint8_t *pixels, int line_s static void clear_blocks_iwmmxt(DCTELEM *blocks) { - __asm __volatile( + asm volatile( "wzero wr0 \n\t" "mov r1, #(128 * 6 / 32) \n\t" "1: \n\t" |