blob: b370ea75e0bf934baca04948e2ddaa59b10c92cd (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
;;; backend.scm -- compilation unit for code generator stuff
;;;
;;; author : Sandra Loosemore
;;; date : 13 May 1992
;;;
(define-compilation-unit backend
(source-filename "$Y2/backend/")
(require flic)
(unit optimize
(source-filename "optimize.scm"))
(unit strictness
(source-filename "strictness.scm"))
(unit box
(source-filename "box.scm"))
(unit codegen
(source-filename "codegen.scm"))
(unit interface-codegen
(source-filename "interface-codegen.scm")))
|