diff --git a/InstructionSets/M50740/Executor.hpp b/InstructionSets/M50740/Executor.hpp index 29ecd3605..16273d1bd 100644 --- a/InstructionSets/M50740/Executor.hpp +++ b/InstructionSets/M50740/Executor.hpp @@ -65,8 +65,6 @@ class Executor: public CachingExecutor { const auto index = (int(operation) - MinOperation) * (1 + MaxAddressingMode - MinAddressingMode) + (int(addressing_mode) - MinAddressingMode); - - assert(index < decltype(index)(sizeof(performers_)/sizeof(*performers_))); return performers_[index]; }