mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-07 07:29:59 +01:00
BackendX64/RegAlloc: Correct UseDefRegsiter behaviour for last use
This commit is contained in:
parent
b4aa01ccf4
commit
2b025183a2
@ -92,7 +92,7 @@ Gen::X64Reg RegAlloc::UseDefRegister(IR::Inst* use_inst, IR::Inst* def_inst, Hos
|
||||
if (IsLastUse(use_inst)) {
|
||||
HostLoc current_location = *ValueLocation(use_inst);
|
||||
auto& loc_info = LocInfo(current_location);
|
||||
if (!loc_info.IsIdle()) {
|
||||
if (loc_info.IsIdle()) {
|
||||
loc_info.is_being_used = true;
|
||||
loc_info.def = def_inst;
|
||||
DEBUG_ASSERT(loc_info.IsUseDef());
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user