This commit is contained in:
Richard Patel 2021-08-14 01:13:20 +02:00
parent a94ee22d14
commit 9959cf2e7d
2 changed files with 3 additions and 3 deletions

View File

@ -5,8 +5,6 @@ use std::sync::atomic::{AtomicU32, Ordering};
use std::sync::Arc;
use std::time::{Duration, Instant};
use num_cpus;
use ppc750cl::Ins;
use std::ops::Range;

View File

@ -1401,7 +1401,8 @@ impl Ins {
Opcode::Sync => "sync",
Opcode::Tlbsync => "tlbsync",
_ => disasm_unreachable!(self.code),
}.to_owned();
}
.to_owned();
Ok(())
}
@ -2305,6 +2306,7 @@ impl ToString for Ins {
}
#[cfg(test)]
#[allow(clippy::unusual_byte_groupings, clippy::bool_assert_comparison)]
mod tests {
use super::*;