mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
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:
parent
0a25936ab6
commit
3088ceea80
@ -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];
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user