From 329137a277cdd2baf31bddb7e0e95f75f18669b5 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 15 May 2018 22:35:33 -0400 Subject: [PATCH] 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. --- tests/A64/fuzz_with_unicorn.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/A64/fuzz_with_unicorn.cpp b/tests/A64/fuzz_with_unicorn.cpp index ff7c2186..295e3f15 100644 --- a/tests/A64/fuzz_with_unicorn.cpp +++ b/tests/A64/fuzz_with_unicorn.cpp @@ -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; }();