turning debug printing back on.

This commit is contained in:
Danny Yoo 2013-02-22 16:59:22 -07:00
parent de009f04d4
commit 2a133d4ad0
2 changed files with 10 additions and 9 deletions

View File

@ -263,9 +263,10 @@
(: compile-module-invoke (ModuleLocator -> InstructionSequence)) (: compile-module-invoke (ModuleLocator -> InstructionSequence))
;; Generates code that will invoke a module (if it hasn't been invoked yet) ;; Generates code that will invoke a module (if it hasn't been invoked
;; FIXME: assumes the module has already been linked. We should error out ;; yet) FIXME: assumes the module has already been loaded/linked. We
;; if the module hasn't been linked yet. ;; should try to load the module, or error out if the module can't be
;; found.
(define (compile-module-invoke a-module-name) (define (compile-module-invoke a-module-name)
(cond (cond
[(kernel-module-name? a-module-name) [(kernel-module-name? a-module-name)
@ -2286,4 +2287,4 @@
(ensure-toplevelref (ensure-toplevelref
(adjust-expression-depth (VariableReference-toplevel exp) n skip)))] (adjust-expression-depth (VariableReference-toplevel exp) n skip)))]
[(Require? exp) [(Require? exp)
exp])) exp]))

View File

@ -188,8 +188,8 @@
(loop (rest stmts)))] (loop (rest stmts)))]
[(DebugPrint? a-stmt) [(DebugPrint? a-stmt)
;(cons a-stmt (loop (rest stmts))) (cons a-stmt (loop (rest stmts)))
(loop (rest stmts)) #;(loop (rest stmts))
] ]
[(Comment? a-stmt) [(Comment? a-stmt)
@ -344,8 +344,8 @@
#f] #f]
[(DebugPrint? stmt) [(DebugPrint? stmt)
;#f #f
#t] #;#t]
[(AssignImmediate? stmt) [(AssignImmediate? stmt)
(equal? (AssignImmediate-target stmt) (equal? (AssignImmediate-target stmt)
@ -442,4 +442,4 @@
(define (ensure-natural x) (define (ensure-natural x)
(if (natural? x) (if (natural? x)
x x
(error 'ensure-natural))) (error 'ensure-natural)))