mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-26 01:02:57 +00:00
constant_pool: Add frame parameter
This commit is contained in:
@@ -470,7 +470,7 @@ HostLoc RegAlloc::LoadImmediate(IR::Value imm, HostLoc host_loc) {
|
||||
if (imm_value == 0)
|
||||
code.pxor(reg, reg);
|
||||
else
|
||||
code.movdqa(reg, code.MConst(imm_value)); // TODO: movaps/movapd more appropriate sometimes
|
||||
code.movdqa(reg, code.MConst(code.xword, imm_value)); // TODO: movaps/movapd more appropriate sometimes
|
||||
return host_loc;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user