Export *trace-level*

This commit is contained in:
Justin Ethier 2015-07-09 21:42:56 -04:00
parent e075759e6b
commit 74b5cc11b7
3 changed files with 3 additions and 5 deletions

4
TODO
View file

@ -12,10 +12,6 @@ Working TODO list:
- self-hosting, there are a lot of accumulated TODO's that need to be addressed - self-hosting, there are a lot of accumulated TODO's that need to be addressed
- why does the -t option not work in self-hosted executable?
need to figure this out, assume some underlying defect
should have been an error because *trace-level* is not exported from transforms module.
- improved error handling: - improved error handling:
- code traces - code traces
- type checking - type checking

View file

@ -12,7 +12,7 @@
(export (export
;*defined-macros* ;*defined-macros*
*do-code-gen* *do-code-gen*
;*trace-level* *trace-level*
*primitives* *primitives*
built-in-syms built-in-syms
trace trace

View file

@ -2,6 +2,8 @@
(scheme file) (scheme file)
(scheme write)) (scheme write))
(set! x 1)
(write x)
(write 'Cyc_procedure) (write 'Cyc_procedure)
;;; TODO: C macros for funcall1, etc are not being generated even though entries are set ;;; TODO: C macros for funcall1, etc are not being generated even though entries are set
;;; in the vector. must be another problem inspecting the vector ??? ;;; in the vector. must be another problem inspecting the vector ???