--- Additional Comments From bdavis at gcc dot gnu dot org 2004-09-01
01:15 ---
there is a mistake on line 308 of malloc.c:
diff -r1.12.14.1 malloc.c
308c308
< t = (mallocArea_ *) (ptr - sizeof(mallocArea_));
---
> t = (mallocArea_ *) (ptr - sizeof(mallocArea_ *));
i shoul
--- Additional Comments From bdavis at gcc dot gnu dot org 2004-08-31
09:31 ---
i don't know how to ensure that the result stays on a 64 bit boundary:
ptr = ptr + sizeof(mallocArea_*);
other than to make the offset 64 bits for everyone.
if desired, i can test this out on i68
2 matches
Mail list logo