From d49215645365b80e91209387fbc004f38d027c63 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 11 May 2022 10:51:48 -0400 Subject: [PATCH] Add `noreturn` attribute as a warning. --- InstructionSets/M68k/Executor.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/InstructionSets/M68k/Executor.hpp b/InstructionSets/M68k/Executor.hpp index 133343eaf..209485ab8 100644 --- a/InstructionSets/M68k/Executor.hpp +++ b/InstructionSets/M68k/Executor.hpp @@ -48,8 +48,9 @@ template class Executor: public NullFlowContr void run_for_instructions(int); /// Call this at any time to interrupt processing with a bus error; - /// the function code and address must be provided. - void signal_bus_error(FunctionCode, uint32_t address); + /// the function code and address must be provided. Internally + /// this will raise a C++ exception, and therefore doesn't return. + [[noreturn]] void signal_bus_error(FunctionCode, uint32_t address); // Flow control; Cf. Perform.hpp. template void raise_exception(int);