changeset 28855:07c168210a73

Revert r3082 | michael | 2001-11-23 13:00:40 +0100 (Fri, 23 Nov 2001) | 2 lines missaligned arrays, as nick requested Reason: idiotic idea
author michael
date Sun, 08 Mar 2009 15:20:14 +0000
parents 96c6451478af
children b9edcb7200e7
files TOOLS/fastmemcpybench.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/TOOLS/fastmemcpybench.c	Sun Mar 08 13:56:35 2009 +0000
+++ b/TOOLS/fastmemcpybench.c	Sun Mar 08 15:20:14 2009 +0000
@@ -105,9 +105,9 @@
   mga_init();
   marr1 = &frame[3];
 #else
-  marr1 = &arr1[3];
+  marr1 = &arr1[0];
 #endif
-  marr2 = &arr2[9];
+  marr2 = &arr2[0];
 
   for(i=0; i<ARR_SIZE-16; i++) marr1[i] = marr2[i] = i;