fuzz_with_unicorn: Remove exclusion of FMOV (imm) for FP-16 floats

Qemu, or rather, Unicorn now supports FP-16, since I backported support
for the recent changes to mainline Qemu relating to FP-16 support.
This commit is contained in:
Lioncash 2018-05-15 22:35:33 -04:00 committed by MerryMage
parent c5ae9107a9
commit 329137a277

View file

@ -90,10 +90,6 @@ static u32 GenRandomInst(u64 pc, bool is_last_inst) {
result.emplace_back(InstructionGenerator{bitstring});
}
// Manually added exceptions:
// FMOV_float_imm for half-precision floats (QEMU doesn't have half-precision support yet).
InstructionGenerator::AddInvalidInstruction("00011110111iiiiiiii10000000ddddd");
return result;
}();