mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-26 17:24:57 +01:00
RegAlloc: Define constructors for HostLocInfo to make MSVC happy
This commit is contained in:
parent
a875c0c720
commit
1252bd653d
2 changed files with 3 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ Gen::X64Reg RegAlloc::DefRegister(IR::Inst* def_inst, HostLocList desired_locati
|
|||
}
|
||||
|
||||
// Update state
|
||||
LocInfo(location) = {def_inst, HostLocState::Def};
|
||||
LocInfo(location) = HostLocInfo{def_inst, HostLocState::Def};
|
||||
return HostLocToX64(location);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue