mirror of
https://github.com/yuzu-mirror/dynarmic.git
synced 2026-03-13 08:23:49 +01:00
emit_arm64_data_processing: Fix MostSignificantWord
This commit is contained in:
parent
9b09acee47
commit
2dce8ea5a8
|
|
@ -137,7 +137,7 @@ void EmitIR<IR::Opcode::MostSignificantWord>(oaknut::CodeGenerator& code, EmitCo
|
|||
auto Xoperand = ctx.reg_alloc.ReadX(args[0]);
|
||||
RegAlloc::Realize(Wresult, Xoperand);
|
||||
|
||||
code.LSL(Wresult->toX(), Xoperand, 32);
|
||||
code.LSR(Wresult->toX(), Xoperand, 32);
|
||||
}
|
||||
|
||||
template<>
|
||||
|
|
|
|||
Loading…
Reference in a new issue