mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-08 15:38:19 +01:00
frontend/ir_emitter: Add half-precision opcode variant for FPVectorRSqrtEstimate
This commit is contained in:
parent
5dba99b4f4
commit
037acb17b9
4 changed files with 8 additions and 0 deletions
|
|
@ -2302,6 +2302,8 @@ U128 IREmitter::FPVectorRoundInt(size_t esize, const U128& operand, FP::Rounding
|
|||
|
||||
U128 IREmitter::FPVectorRSqrtEstimate(size_t esize, const U128& a) {
|
||||
switch (esize) {
|
||||
case 16:
|
||||
return Inst<U128>(Opcode::FPVectorRSqrtEstimate16, a);
|
||||
case 32:
|
||||
return Inst<U128>(Opcode::FPVectorRSqrtEstimate32, a);
|
||||
case 64:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue