From 5b5359feb1988a9e8cc66c8e8d1a12f9a0adeed6 Mon Sep 17 00:00:00 2001 From: Akilan Date: Mon, 30 Dec 2024 13:42:28 +0000 Subject: [PATCH] test whole program --- benchmarks/benchmarks/cfrac/pcfrac.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/benchmarks/benchmarks/cfrac/pcfrac.c b/benchmarks/benchmarks/cfrac/pcfrac.c index ac8f48f..4fbb44d 100644 --- a/benchmarks/benchmarks/cfrac/pcfrac.c +++ b/benchmarks/benchmarks/cfrac/pcfrac.c @@ -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;