mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-16 17:27:33 +02:00
Issue #201 - disabling for now
This commit is contained in:
parent
aea673c764
commit
da2f2bb05f
1 changed files with 2 additions and 1 deletions
|
@ -850,7 +850,8 @@
|
|||
(ast:lambda-formals->list (car exp))))
|
||||
(opt:inline-prims (car (ast:lambda-body (car exp))) refs))
|
||||
;; Issue #201 - Attempt to identify case where an if can be inlined
|
||||
((and (= (length exp) 2)
|
||||
((and #f ;; TODO: Disabling for now, see issue for more info
|
||||
(= (length exp) 2)
|
||||
(ast:lambda? (car exp))
|
||||
(ast:lambda? (cadr exp))
|
||||
(ast:lambda-has-cont (car exp))
|
||||
|
|
Loading…
Add table
Reference in a new issue