fix unreachable?

This commit is contained in:
lizzie 2026-03-30 02:58:44 +00:00
parent 0c1fdd8be0
commit 696c6d903c
74 changed files with 465 additions and 432 deletions

View file

@ -273,7 +273,7 @@ std::vector<u16> GenRandomThumbInst(u32 pc, bool is_last_inst, A32::ITState it_s
} else if (bitstring.substr(0, 8) == "11110100") {
bitstring.replace(0, 8, "11111001");
} else {
UNREACHABLE(); // "Unhandled ASIMD instruction: {} {}", fn, bs);
std::terminate(); //unreachable // "Unhandled ASIMD instruction: {} {}", fn, bs);
}
if (std::find(do_not_test.begin(), do_not_test.end(), fn) != do_not_test.end()) {
invalid.emplace_back(InstructionGenerator{bitstring.c_str()});