diff libvo/aclib_template.c @ 15639:f26450da61a1

More gcc-4.0 fixes
author gpoirier
date Sat, 04 Jun 2005 21:11:39 +0000
parents 1a13df0d4fc2
children ef54df9f07d3
line wrap: on
line diff
--- a/libvo/aclib_template.c	Sat Jun 04 20:54:49 2005 +0000
+++ b/libvo/aclib_template.c	Sat Jun 04 21:11:39 2005 +0000
@@ -249,8 +249,8 @@
 		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 @@
 		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 */