Rename sarg__ to sarg_t

This commit is contained in:
bjorn3
2020-07-15 20:56:25 +02:00
committed by Benjamin Bouvier
parent 4971d9ee80
commit 7b7b1f4997
10 changed files with 22 additions and 22 deletions

View File

@@ -2152,7 +2152,7 @@ pub(crate) fn lower_insn_to_regs<C: LowerCtx<I = Inst>>(
panic!("x86-specific opcode in supposedly arch-neutral IR!");
}
Opcode::DummySarg => unreachable!(),
Opcode::DummySargT => unreachable!(),
Opcode::AvgRound => unimplemented!(),
Opcode::Iabs => unimplemented!(),

View File

@@ -118,7 +118,7 @@ impl ArgAssigner for Args {
let loc = ArgumentLoc::Stack(self.offset as i32);
self.offset += size;
debug_assert!(self.offset <= i32::MAX as u32);
return ArgAction::AssignAndChangeType(loc, types::SARG__);
return ArgAction::AssignAndChangeType(loc, types::SARG_T);
}
let ty = arg.value_type;