test whole program

This commit is contained in:
2025-08-11 13:51:14 +01:00
parent fc81b65f89
commit 2b9eb63621

View File

@@ -186,7 +186,7 @@ void* MALLOCCHERI(size_t sz)
sz = __builtin_align_up(sz, _Alignof(max_align_t)); sz = __builtin_align_up(sz, _Alignof(max_align_t));
// printf("%d \n", sz); // printf("%d \n", sz);
printf("%d Malloc counter\n", MallocCounter); // printf("%d Malloc counter\n", MallocCounter);
MallocCounter -= sz; MallocCounter -= sz;
void *ptrLink = &ptr[MallocCounter]; void *ptrLink = &ptr[MallocCounter];