Commit 8eff61fd authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/mips/vp9_idct_msa: Replace __volatile__ by volatile

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent c03800d5
...@@ -1177,7 +1177,7 @@ static void vp9_idct16x16_10_colcol_addblk_msa(int16_t *input, uint8_t *dst, ...@@ -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 */ /* short case just considers top 4 rows as valid output */
out += 4 * 16; out += 4 * 16;
for (i = 12; i--;) { for (i = 12; i--;) {
__asm__ __volatile__ ( __asm__ volatile (
"sw $zero, 0(%[out]) \n\t" "sw $zero, 0(%[out]) \n\t"
"sw $zero, 4(%[out]) \n\t" "sw $zero, 4(%[out]) \n\t"
"sw $zero, 8(%[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, ...@@ -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); int16_t tmp_buf[8 * 32] ALLOC_ALIGNED(ALIGNMENT);
for (i = 32; i--;) { for (i = 32; i--;) {
__asm__ __volatile__ ( __asm__ volatile (
"sw $zero, (%[out_ptr]) \n\t" "sw $zero, (%[out_ptr]) \n\t"
"sw $zero, 4(%[out_ptr]) \n\t" "sw $zero, 4(%[out_ptr]) \n\t"
"sw $zero, 8(%[out_ptr]) \n\t" "sw $zero, 8(%[out_ptr]) \n\t"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment