From 0370bcf40ce3a07e6e2d33b8bcebf28a0ac98807 Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Wed, 5 Sep 2018 09:37:11 -0600 Subject: complier.h: add __noreturn and use it in code base Add a __noreturn macro that wraps __attribute__((noreturn)) and replace current users with the macro. Change-Id: Iddd0728cf79678c3d1c1f7e7946c27375a644a7d Signed-off-by: Aaron Durbin Reviewed-on: https://review.coreboot.org/28505 Tested-by: build bot (Jenkins) Reviewed-by: Furquan Shaikh Reviewed-by: Paul Menzel --- src/console/die.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/console') diff --git a/src/console/die.c b/src/console/die.c index 3f5ca45068..59411256be 100644 --- a/src/console/die.c +++ b/src/console/die.c @@ -20,7 +20,6 @@ #include #ifndef __ROMCC__ -#define NORETURN __attribute__((noreturn)) /* * The method should be overwritten in mainboard directory to signal that a @@ -33,7 +32,7 @@ __weak void die_notify(void) } /* Report a fatal error */ -void NORETURN die(const char *msg) +void __noreturn die(const char *msg) { printk(BIOS_EMERG, "%s", msg); die_notify(); -- cgit v1.2.3