Remove ir_ssa.rs as we aren't using it and it's now outdated

This commit is contained in:
Maxime Chevalier-Boisvert 2022-08-25 21:06:22 -04:00 committed by Takashi Kokubun
parent 4b7d3884df
commit 929a6a75eb
Notes: git 2022-08-30 01:10:09 +09:00
3 changed files with 1 additions and 1263 deletions

File diff suppressed because it is too large Load Diff

View File

@ -5,5 +5,4 @@ pub mod x86_64;
pub mod arm64;
pub mod ir;
pub mod ir_ssa;
mod tests;

View File

@ -1146,7 +1146,7 @@ fn gen_opt_plus(
// Check that both operands are fixnums
guard_two_fixnums(ctx, asm, side_exit);
// Get the operands and destination from the stack
// Get the operands from the stack
let arg1 = ctx.stack_pop(1);
let arg0 = ctx.stack_pop(1);