Added stub

This commit is contained in:
Justin Ethier 2018-09-12 17:17:31 -04:00
parent d45c44388f
commit c9fd208a72
2 changed files with 8 additions and 0 deletions

View file

@ -434,6 +434,10 @@
(trace:info "---------------- after wrap-mutables:")
(trace:info (ast:ast->pp-sexp input-program))
;; Perform this analysis here since we need it later so it doesn't
;; make sense to execute it multiple times during CPS optimization
(analyze:find-known-lambdas input-program)
(set! input-program
(map
(lambda (expr)

View file

@ -27,6 +27,7 @@
analyze-find-lambdas
analyze:find-named-lets
analyze:find-direct-recursive-calls
analyze:find-known-lambdas
;analyze-lambda-side-effects
opt:add-inlinable-functions
opt:contract
@ -1925,4 +1926,7 @@
exp))
)
(define (analyze:find-known-lambdas exp)
'TODO)
))