Remove five carriage returns introduced in r8665, so the expected outputs

match the actual outputs again.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8675
This commit is contained in:
Julian Seward 2008-10-18 19:16:57 +00:00
parent 0a25936ab6
commit 3088ceea80

View File

@ -10,16 +10,11 @@ int main ( void )
char c0[8], c1[8], c2[8], c3[8], c4[8];
// Each of these pointers has a different alignment
char** p0 = (char**)&c0[0];
char** p1 = (char**)&c1[1];
char** p2 = (char**)&c2[2];
char** p3 = (char**)&c3[3];
char** p0 = (char**)&c0[0]; char** p1 = (char**)&c1[1];
char** p2 = (char**)&c2[2]; char** p3 = (char**)&c3[3];
char** p4 = (char**)&c4[4];
*p0 = x;
*p1 = x;
*p2 = x;
*p3 = x;
*p4 = x;
*p0 = x; *p1 = x; *p2 = x;
*p3 = x; *p4 = x;
// These 10 are ok
c = (*p0)[0];