update readme

This commit is contained in:
2025-04-08 20:25:27 -04:00
parent 920199c567
commit 085139c5ac
2 changed files with 4 additions and 6 deletions

View File

@@ -61,9 +61,6 @@ pub enum IRLInstruction {
impl IRLInstruction {
pub fn is_ret(&self) -> bool {
match self {
Self::Ret { .. } => true,
_ => false,
}
matches!(self, Self::Ret { .. })
}
}