mirror of
https://github.com/mpv-player/mpv
synced 2025-01-18 04:51:52 +00:00
More gcc-4.0 fixes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15640 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
0836c5a899
commit
d853ecdc40
@ -249,8 +249,8 @@ static void * RENAME(fast_memcpy)(void * to, const void * from, size_t len)
|
||||
MOVNTQ" %%mm6, 48(%1)\n"
|
||||
MOVNTQ" %%mm7, 56(%1)\n"
|
||||
:: "r" (from), "r" (to) : "memory");
|
||||
((const unsigned char *)from)+=64;
|
||||
((unsigned char *)to)+=64;
|
||||
from=((const unsigned char *)from)+64;
|
||||
to=((unsigned char *)to)+64;
|
||||
}
|
||||
|
||||
// printf(" %d %d\n", (int)from&1023, (int)to&1023);
|
||||
@ -338,8 +338,8 @@ static void * RENAME(fast_memcpy)(void * to, const void * from, size_t len)
|
||||
MOVNTQ" %%mm6, 48(%1)\n"
|
||||
MOVNTQ" %%mm7, 56(%1)\n"
|
||||
:: "r" (from), "r" (to) : "memory");
|
||||
((const unsigned char *)from)+=64;
|
||||
((unsigned char *)to)+=64;
|
||||
from=((const unsigned char *)from)+64;
|
||||
to=((unsigned char *)to)+64;
|
||||
}
|
||||
|
||||
#endif /* Have SSE */
|
||||
|
Loading…
Reference in New Issue
Block a user