update readme

This commit is contained in:
iris committed 2025-04-08 20:25:27 -04:00
1 parent 920199c567
commit 085139c5ac
2 files changed
+4 -6

No files matched your search

+1 -4
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 { .. })
}
}