Deal with errors generated when RELEASE build made

This commit is contained in:
2025-06-11 07:21:21 +01:00
parent ba7e08122e
commit 34e4d42876
4 changed files with 8 additions and 5 deletions

5
main.c
View File

@@ -88,10 +88,9 @@ int main(int argc, char *argv[])
u64 size = results.size / sizeof(*lisps);
for (u64 i = 0; i < size; ++i)
{
lisp_t *lisp = lisps[i];
// printf("tag=%x\n", tag_get(lisp));
lisp_t *lisp = lisps[i];
sv_t serialised = serialise(&ctx, lisp);
info("lisp[%lu]: %p => " PR_SV "\n", i, lisp, SV_FMT(serialised));
debug("lisp[%lu]: %p => " PR_SV "\n", i, lisp, SV_FMT(serialised));
}
context_report(&ctx);