diff options
author | 2005-06-04 21:11:39 +0000 | |
---|---|---|
committer | 2005-06-04 21:11:39 +0000 | |
commit | d853ecdc400800b073ec9e1b1466192159c90b98 (patch) | |
tree | 7c8cb98c43558ce50795a9fc7aa88d26720e3167 /libvo | |
parent | 0836c5a89947b9aca68f5b9a7e38c6ea845cb0a4 (diff) |
More gcc-4.0 fixes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15640 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r-- | libvo/aclib_template.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libvo/aclib_template.c b/libvo/aclib_template.c index 4ec6c492fb..73b3ce01b2 100644 --- a/libvo/aclib_template.c +++ b/libvo/aclib_template.c @@ -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 */ |