From f0c4dc40b2e16a876b5b61986de5014a78f76a5c Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 2 May 2021 00:07:21 -0400 Subject: sim: replace custom attributes with ansidecl.h A lot of this code predates the common attributes. We had already started migrating over piece by piece, so just do a pass across all the attributes and replace most of them. --- sim/common/sim-engine.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sim/common/sim-engine.h') diff --git a/sim/common/sim-engine.h b/sim/common/sim-engine.h index 5adce8d..3ebf8ac 100644 --- a/sim/common/sim-engine.h +++ b/sim/common/sim-engine.h @@ -62,7 +62,7 @@ extern void sim_engine_halt sim_cpu *next_cpu, /* NULL -> succ (last_cpu) or event-mgr */ sim_cia cia, enum sim_stop reason, - int sigrc) __attribute__ ((noreturn)); + int sigrc) ATTRIBUTE_NORETURN; /* Halt hook - allow target specific operation when halting a simulator */ @@ -115,14 +115,14 @@ extern void sim_engine_abort sim_cpu *cpu, sim_cia cia, const char *fmt, - ...) ATTRIBUTE_PRINTF (4, 5) __attribute__ ((noreturn)); + ...) ATTRIBUTE_PRINTF (4, 5) ATTRIBUTE_NORETURN; extern void sim_engine_vabort (SIM_DESC sd, sim_cpu *cpu, sim_cia cia, const char *fmt, - va_list ap) ATTRIBUTE_PRINTF (4, 0) __attribute__ ((noreturn)); + va_list ap) ATTRIBUTE_PRINTF (4, 0) ATTRIBUTE_NORETURN; /* No abort hook - when possible this function exits using the engine_halt function (and SIM_ENGINE_HALT_HOOK). */ -- cgit v1.1