You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: compiler/src/modules/vm/mod.rs
+1-17Lines changed: 1 addition & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -200,23 +200,7 @@ impl<'a> VM<'a> {
200
200
letmut ip = 0usize;
201
201
letmut phi_idx = 0usize;
202
202
203
-
// SSA backward-compat alias table
204
-
let prev_slots = {
205
-
letmut ps:Vec<Option<usize>> = vec![None; chunk.names.len()];// SSA alias table: maps each versioned slot to its predecessor for backward compatibility
0 commit comments