From 73815ba1dd14fbe569a3869d0919c6a93e5ff85d Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 1 Jun 2022 08:20:06 -0400 Subject: [PATCH] No need for this hoop jumping here. --- InstructionSets/M68k/Instruction.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/InstructionSets/M68k/Instruction.hpp b/InstructionSets/M68k/Instruction.hpp index ce211dbec..314729f8d 100644 --- a/InstructionSets/M68k/Instruction.hpp +++ b/InstructionSets/M68k/Instruction.hpp @@ -104,9 +104,9 @@ enum class Operation: uint8_t { Max = RESET }; -template -constexpr bool requires_supervisor(Operation r_op = Operation::Undefined) { - switch(t_op != Operation::Undefined ? t_op : r_op) { +template +constexpr bool requires_supervisor(Operation op) { + switch(op) { case Operation::MOVEfromSR: if constexpr (model == Model::M68000) { return false;