Add README note that non-SSA support is deprecated. (#94)

As noted in #4.
This commit is contained in:
Chris Fallin
2022-10-05 10:43:15 -07:00
committed by GitHub
parent 227a9fde91
commit 6394913c1d

View File

@@ -4,7 +4,9 @@ This is a register allocator that started life as, and is about 50%
still, a port of IonMonkey's backtracking register allocator to
Rust. In many regards, it has been generalized, optimized, and
improved since the initial port, and now supports both SSA and non-SSA
use-cases.
use-cases. (However, non-SSA should be considered deprecated; we want to
move to SSA-only in the future, to enable some performance improvements.
See #4.)
In addition, it contains substantial amounts of testing infrastructure
(fuzzing harnesses and checkers) that does not exist in the original