mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-03-05 13:45:36 +00:00
emit_x64: EmitX64::Emit: block.Location() returns by value
This commit is contained in:
parent
79545661b3
commit
814348371e
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ static void EraseInstruction(IR::Block& block, IR::Inst* inst) {
|
||||||
}
|
}
|
||||||
|
|
||||||
EmitX64::BlockDescriptor EmitX64::Emit(IR::Block& block) {
|
EmitX64::BlockDescriptor EmitX64::Emit(IR::Block& block) {
|
||||||
const Arm::LocationDescriptor& descriptor = block.Location();
|
const Arm::LocationDescriptor descriptor = block.Location();
|
||||||
|
|
||||||
reg_alloc.Reset();
|
reg_alloc.Reset();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue