fixed match

This commit is contained in:
Erin 2023-10-22 23:59:27 +02:00 committed by ondra05
parent ea4b63ef9d
commit 6e61842a73

View file

@ -275,8 +275,8 @@ where
self.pc = self.pcrel(ja, 3);
}
}
JLT => self.cond_jmp::<u64>(Ordering::Less),
JGT => self.cond_jmp::<u64>(Ordering::Greater),
JLTS => self.cond_jmp::<u64>(Ordering::Less),
JGTS => self.cond_jmp::<u64>(Ordering::Greater),
JLTU => self.cond_jmp::<i64>(Ordering::Less),
JGTU => self.cond_jmp::<i64>(Ordering::Greater),
ECA => {