mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-07 07:29:59 +01:00
verification_pass: Have an appropriate assertion message
This commit is contained in:
parent
ebddf6cca0
commit
cae857b8c8
@ -23,7 +23,7 @@ void VerificationPass(const IR::Block& block) {
|
|||||||
const IR::Type t2 = IR::GetArgTypeOf(inst.GetOpcode(), i);
|
const IR::Type t2 = IR::GetArgTypeOf(inst.GetOpcode(), i);
|
||||||
if (!IR::AreTypesCompatible(t1, t2)) {
|
if (!IR::AreTypesCompatible(t1, t2)) {
|
||||||
std::puts(IR::DumpBlock(block).c_str());
|
std::puts(IR::DumpBlock(block).c_str());
|
||||||
ASSERT(false);
|
ASSERT_FALSE("above block failed validation");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user