From d853ecdc400800b073ec9e1b1466192159c90b98 Mon Sep 17 00:00:00 2001 From: gpoirier Date: Sat, 4 Jun 2005 21:11:39 +0000 Subject: More gcc-4.0 fixes git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15640 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/aclib_template.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libvo') 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 */ -- cgit v1.2.3