Expand description
The SSA Const Propagation pass propagates constant values through the program. This pass runs after SSA formation, so each variable has a unique name.
The pass tracks variables that are assigned literal values and replaces uses of those variables with their constant values.
Re-exportsยง
pub use visitor::SsaConstPropagationVisitor;