mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
512 B
512 B
layout | title | excerpt |
---|---|---|
post | Released Cyclone Scheme 0.9.2 | This release includes various performance enhancements. |
Features
- During CPS optimization allow inlining of operations on global variables that are mutated in other top-level functions.
- Improved loop detection during CPS optimization phase.
- Allow optimizing-out of basic
if
expressions of the form(if (pred? ...) #t #f)
into(pred? ...)
. - Perform slightly faster type checking for string, vector, and bytevector access functions.