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 коммит произвёл Takashi Kokubun
Родитель 4b7d3884df
Коммит 929a6a75eb
3 изменённых файлов: 1 добавлений и 1263 удалений

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

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

Просмотреть файл

@ -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);