fixed match

soft-float
Erin 2023-10-22 23:59:27 +02:00
parent 9b823ef660
commit 3a6d0fdd2d
1 changed files with 2 additions and 2 deletions

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 => {