mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-09 22:17:33 +02:00
Do not constant-fold computations that include a vector
This commit is contained in:
parent
30619d8709
commit
4c8b8cc13e
1 changed files with 2 additions and 1 deletions
|
@ -582,7 +582,8 @@
|
|||
(lambda (return)
|
||||
(for-each
|
||||
(lambda (expr)
|
||||
(if (not (const? expr))
|
||||
(if (or (vector? expr)
|
||||
(not (const? expr)))
|
||||
(return #f)))
|
||||
(cdr ast))
|
||||
#t))))
|
||||
|
|
Loading…
Add table
Reference in a new issue