Commit 3d675f0a authored by reimar's avatar reimar

__asm __volatile -> asm volatile part 3


git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@26091 b3059339-0415-0410-9bf9-f77b7e298cf2
parent 3f7f44ab
This diff is collapsed.
......@@ -3259,8 +3259,8 @@ static int RENAME(swScale)(SwsContext *c, uint8_t* src[], int srcStride[], int s
}
#ifdef HAVE_MMX
__asm __volatile(SFENCE:::"memory");
__asm __volatile(EMMS:::"memory");
asm volatile(SFENCE:::"memory");
asm volatile(EMMS:::"memory");
#endif
/* store changed local vars back in the context */
c->dstY= dstY;
......
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