mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-03 17:52:56 +00:00
IR: Add IR instruction ZeroExtendToQuad
This commit is contained in:
@@ -396,6 +396,10 @@ U32 IREmitter::ZeroExtendToWord(const UAny& a) {
|
||||
}
|
||||
}
|
||||
|
||||
U128 IREmitter::ZeroExtendToQuad(const UAny& a) {
|
||||
return Inst<U128>(Opcode::ZeroExtendLongToQuad, ZeroExtendToLong(a));
|
||||
}
|
||||
|
||||
U64 IREmitter::ZeroExtendWordToLong(const U32& a) {
|
||||
return Inst<U64>(Opcode::ZeroExtendWordToLong, a);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user