mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-09 16:08:04 +01:00
reg_alloc: const correctness for ValueLocation()
This commit is contained in:
parent
2d6a86e43c
commit
36a0ad5bc2
2 changed files with 3 additions and 3 deletions
|
|
@ -136,7 +136,7 @@ public:
|
|||
|
||||
private:
|
||||
HostLoc SelectARegister(HostLocList desired_locations) const;
|
||||
boost::optional<HostLoc> ValueLocation(IR::Inst* value) const;
|
||||
boost::optional<HostLoc> ValueLocation(const IR::Inst* value) const;
|
||||
bool IsRegisterOccupied(HostLoc loc) const;
|
||||
bool IsRegisterAllocated(HostLoc loc) const;
|
||||
bool IsLastUse(IR::Inst* inst) const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue