fuzz_arm: Unicorn has incorrect VRSQRTS implementation

This commit is contained in:
MerryMage 2020-06-20 15:07:50 +01:00
parent 6f59c2cd8e
commit 8912496206

View file

@ -114,6 +114,7 @@ u32 GenRandomInst(u32 pc, bool is_last_inst) {
"asimd_VPADD_float", "asimd_VRECPE",
// Incorrect Unicorn implementations
"asimd_VRECPS", // Unicorn does not fuse the multiply and subtraction, resulting in being off by 1ULP.
"asimd_VRSQRTS", // Unicorn does not fuse the multiply and subtraction, resulting in being off by 1ULP.
};
for (const auto& [fn, bitstring] : list) {