diff options
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/translate/impl')
| -rw-r--r-- | src/shader_recompiler/frontend/maxwell/translate/impl/impl.h | 2 | ||||
| -rw-r--r-- | src/shader_recompiler/frontend/maxwell/translate/impl/not_implemented.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/impl.h b/src/shader_recompiler/frontend/maxwell/translate/impl/impl.h index c6253c40c..45d6f5e06 100644 --- a/src/shader_recompiler/frontend/maxwell/translate/impl/impl.h +++ b/src/shader_recompiler/frontend/maxwell/translate/impl/impl.h | |||
| @@ -62,7 +62,7 @@ public: | |||
| 62 | void BRA(u64 insn); | 62 | void BRA(u64 insn); |
| 63 | void BRK(u64 insn); | 63 | void BRK(u64 insn); |
| 64 | void BRX(u64 insn); | 64 | void BRX(u64 insn); |
| 65 | void CAL(u64 insn); | 65 | void CAL(); |
| 66 | void CCTL(u64 insn); | 66 | void CCTL(u64 insn); |
| 67 | void CCTLL(u64 insn); | 67 | void CCTLL(u64 insn); |
| 68 | void CONT(u64 insn); | 68 | void CONT(u64 insn); |
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/not_implemented.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/not_implemented.cpp index 01ecbb4cc..92da5c7e8 100644 --- a/src/shader_recompiler/frontend/maxwell/translate/impl/not_implemented.cpp +++ b/src/shader_recompiler/frontend/maxwell/translate/impl/not_implemented.cpp | |||
| @@ -65,8 +65,8 @@ void TranslatorVisitor::BRX(u64) { | |||
| 65 | ThrowNotImplemented(Opcode::BRX); | 65 | ThrowNotImplemented(Opcode::BRX); |
| 66 | } | 66 | } |
| 67 | 67 | ||
| 68 | void TranslatorVisitor::CAL(u64) { | 68 | void TranslatorVisitor::CAL() { |
| 69 | ThrowNotImplemented(Opcode::CAL); | 69 | // CAL is a no-op |
| 70 | } | 70 | } |
| 71 | 71 | ||
| 72 | void TranslatorVisitor::CCTL(u64) { | 72 | void TranslatorVisitor::CCTL(u64) { |