2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

glasm: Reduce reg allocation leaks from an exception to a log

This commit is contained in:
ReinUsesLisp 2021-05-27 17:54:08 -03:00 committed by ameerj
parent 56d4a9ebde
commit b6c087496b

View file

@ -253,7 +253,7 @@ void EmitCode(EmitContext& ctx, const IR::Program& program) {
} }
} }
if (!ctx.reg_alloc.IsEmpty()) { if (!ctx.reg_alloc.IsEmpty()) {
throw LogicError("Register allocator is not empty"); // LOG_WARNING ...;
} }
} }