From 8bd471fa3c9ddbd4e259f6b8ddd10c0f0d86c9f7 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 16 Jan 2021 21:50:48 -0500 Subject: [PATCH] Corrects recursive call. --- InstructionSets/M50740/Executor.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InstructionSets/M50740/Executor.hpp b/InstructionSets/M50740/Executor.hpp index b291f1e21..5709732f0 100644 --- a/InstructionSets/M50740/Executor.hpp +++ b/InstructionSets/M50740/Executor.hpp @@ -60,7 +60,7 @@ class Executor { template void fill_operation(Action::Performer *target) { *target = &Executor::perform; if constexpr (addressing_mode+1 < MaxAddressingMode) { - fill(target + 1); + fill_operation(target + 1); } }