๐CPS is single assignment (SSA)
- source
In CPS, as in SSA, all variables are bound exactly once. This allows for better control flow analysis.
SSA relies on the ฯ-operator to join variables from multiple control path, and CPS relies on function calls instead.
Backlinks
- ๐ Compiling with continuations
- ๐ ยง Continuation