diff options
author | zmt00 <[email protected]> | 2024-02-06 18:49:15 -0800 |
---|---|---|
committer | merry <[email protected]> | 2024-02-10 11:31:54 +0000 |
commit | 0785a6d027e5be1a62d001a21f092a0fed2a29d8 (patch) | |
tree | 7c4161ce0034352165cfe7e1c5aee5c55e754441 /tests | |
parent | a32e6f52ef6ef9a2aa7451666a2d70385b719244 (diff) | |
download | dynarmic-0785a6d027e5be1a62d001a21f092a0fed2a29d8.tar.gz dynarmic-0785a6d027e5be1a62d001a21f092a0fed2a29d8.zip |
ir: Implement FPMulSub
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_generator.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_generator.cpp b/tests/test_generator.cpp index 90c2d635..cfdd8ea4 100644 --- a/tests/test_generator.cpp +++ b/tests/test_generator.cpp @@ -103,6 +103,7 @@ bool ShouldTestInst(IR::Block& block) { // Half-precision case IR::Opcode::FPAbs16: case IR::Opcode::FPMulAdd16: + case IR::Opcode::FPMulSub16: case IR::Opcode::FPNeg16: case IR::Opcode::FPRecipEstimate16: case IR::Opcode::FPRecipExponent16: |