Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

Commit

Permalink
backend/rv64: Add stub implementations for FPMulSub
Browse files Browse the repository at this point in the history
  • Loading branch information
merryhime committed Mar 3, 2024
1 parent 8a11790 commit a41c380
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/dynarmic/backend/riscv64/emit_riscv64_floating_point.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,21 @@ void EmitIR<IR::Opcode::FPMulAdd64>(biscuit::Assembler&, EmitContext&, IR::Inst*
UNIMPLEMENTED();
}

template<>
void EmitIR<IR::Opcode::FPMulSub16>(biscuit::Assembler&, EmitContext&, IR::Inst*) {
UNIMPLEMENTED();
}

template<>
void EmitIR<IR::Opcode::FPMulSub32>(biscuit::Assembler&, EmitContext&, IR::Inst*) {
UNIMPLEMENTED();
}

template<>
void EmitIR<IR::Opcode::FPMulSub64>(biscuit::Assembler&, EmitContext&, IR::Inst*) {
UNIMPLEMENTED();
}

template<>
void EmitIR<IR::Opcode::FPMulX32>(biscuit::Assembler&, EmitContext&, IR::Inst*) {
UNIMPLEMENTED();
Expand Down

0 comments on commit a41c380

Please sign in to comment.