Add .snap.new files to gitignore

This commit is contained in:
2025-12-30 23:00:55 -07:00
parent 964ad92077
commit dbc4c72c3b
5 changed files with 5 additions and 145 deletions

View File

@@ -92,9 +92,9 @@ pub fn optimize<'a>(instructions: Instructions<'a>) -> Instructions<'a> {
// Final Pass: Resolve Labels to Line Numbers
let mut instructions = resolve_labels(instructions);
// Post-resolution Pass: Remove redundant jumps (must run after label resolution)
let (instructions, _) = remove_redundant_jumps(instructions);
Instructions::new(instructions)
}