From c53179966341648f2dfa1a89f7b9a091cade4918 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 20 Sep 2018 12:50:22 -0400 Subject: [PATCH] Emit analysis DB after closure conv This allows us to see the final DB prior to C code generation, as we are now modifying it after the CPS optimization phase. --- cyclone.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cyclone.scm b/cyclone.scm index d5ed876e..6ca06545 100644 --- a/cyclone.scm +++ b/cyclone.scm @@ -454,6 +454,9 @@ input-program)) (trace:info "---------------- after closure-convert:") (trace:info (ast:ast->pp-sexp input-program)) + + (trace:info "---------------- analysis db: ") + (trace:info (adb:get-db)) (when (not *do-code-gen*) (trace:error "DEBUG, existing program")