test whole program

This commit is contained in:
2024-12-30 13:42:28 +00:00
parent 40fa599be4
commit 5b5359feb1

View File

@@ -337,8 +337,11 @@ uvec pfactorbase(n, k, m, aborts)
*/
#ifdef BWGC
res = (uvec) gc_malloc(count * sizeof (unsigned));
#else
#else
printf("reaches here");
printf("reaches here new");
res = (uvec) malloc(count * sizeof (unsigned));
printf("malloc allocated");
#endif
if (res == (uvec) 0) goto doneMk;