mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-10 00:18:23 +01:00
frontend/ir_emitter: Add half-precision opcode for FPVectorEquals
This commit is contained in:
parent
557a01a787
commit
43fd2b400a
4 changed files with 12 additions and 0 deletions
|
|
@ -2276,6 +2276,8 @@ U128 IREmitter::FPVectorDiv(size_t esize, const U128& a, const U128& b) {
|
|||
|
||||
U128 IREmitter::FPVectorEqual(size_t esize, const U128& a, const U128& b) {
|
||||
switch (esize) {
|
||||
case 16:
|
||||
return Inst<U128>(Opcode::FPVectorEqual16, a, b);
|
||||
case 32:
|
||||
return Inst<U128>(Opcode::FPVectorEqual32, a, b);
|
||||
case 64:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue