fuzz_arm: Do not test vfp_VMRS

This may emit a vmrs *, fpscr instruction.
This results in fuzz failures due to slight inaccuracies in fpscr emulation.
This commit is contained in:
MerryMage 2020-05-10 14:47:21 +01:00
parent 3c86d58064
commit 7f77a04900

View file

@ -107,6 +107,8 @@ u32 GenRandomInst(u32 pc, bool is_last_inst) {
"arm_CPS", "arm_RFE", "arm_SRS", "arm_CPS", "arm_RFE", "arm_SRS",
// Undefined // Undefined
"arm_UDF", "arm_UDF",
// FPSCR is inaccurate
"vfp_VMRS",
}; };
for (const auto& [fn, bitstring] : list) { for (const auto& [fn, bitstring] : list) {