diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-23 17:38:01 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-23 17:38:01 +0200 |
commit | 8eff61fd45f1d1872c9f370bdf7e33501a3e6d7a (patch) | |
tree | 8f319b8915b10dc42a6b96f6b1e537cc6efd9852 | |
parent | c03800d5921e5359a78c2d2af781d059bc53bfda (diff) | |
download | ffmpeg-8eff61fd45f1d1872c9f370bdf7e33501a3e6d7a.tar.gz |
avcodec/mips/vp9_idct_msa: Replace __volatile__ by volatile
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/mips/vp9_idct_msa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mips/vp9_idct_msa.c b/libavcodec/mips/vp9_idct_msa.c index aeb2387959..25ea16c72a 100644 --- a/libavcodec/mips/vp9_idct_msa.c +++ b/libavcodec/mips/vp9_idct_msa.c @@ -1177,7 +1177,7 @@ static void vp9_idct16x16_10_colcol_addblk_msa(int16_t *input, uint8_t *dst, /* short case just considers top 4 rows as valid output */ out += 4 * 16; for (i = 12; i--;) { - __asm__ __volatile__ ( + __asm__ volatile ( "sw $zero, 0(%[out]) \n\t" "sw $zero, 4(%[out]) \n\t" "sw $zero, 8(%[out]) \n\t" @@ -1938,7 +1938,7 @@ static void vp9_idct32x32_34_colcol_addblk_msa(int16_t *input, uint8_t *dst, int16_t tmp_buf[8 * 32] ALLOC_ALIGNED(ALIGNMENT); for (i = 32; i--;) { - __asm__ __volatile__ ( + __asm__ volatile ( "sw $zero, (%[out_ptr]) \n\t" "sw $zero, 4(%[out_ptr]) \n\t" "sw $zero, 8(%[out_ptr]) \n\t" |