aboutsummaryrefslogtreecommitdiff
path: root/sim/ppc
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2021-06-15 20:40:31 -0400
committerMike Frysinger <vapier@gentoo.org>2021-06-16 01:10:11 -0400
commit6e57d0253200f0ad4f770fe2a82ab1995e6e5bc0 (patch)
tree9db58b43ba8ad53a02d3e8a33ff0f066704eae96 /sim/ppc
parentf6428ce423802d55d218519f4f79a5dd9b4375dc (diff)
downloadfsf-binutils-gdb-6e57d0253200f0ad4f770fe2a82ab1995e6e5bc0.zip
fsf-binutils-gdb-6e57d0253200f0ad4f770fe2a82ab1995e6e5bc0.tar.gz
fsf-binutils-gdb-6e57d0253200f0ad4f770fe2a82ab1995e6e5bc0.tar.bz2
sim: ppc: replace local NORETURN macros with common one
Drop local NORETURN macro with the common ansidecl.h ATTRIBUTE_NORETURN define.
Diffstat (limited to 'sim/ppc')
-rw-r--r--sim/ppc/ChangeLog7
-rw-r--r--sim/ppc/basics.h4
-rw-r--r--sim/ppc/sim_callbacks.h4
-rw-r--r--sim/ppc/sim_calls.c3
4 files changed, 12 insertions, 6 deletions
diff --git a/sim/ppc/ChangeLog b/sim/ppc/ChangeLog
index 4f54f77..f40504e 100644
--- a/sim/ppc/ChangeLog
+++ b/sim/ppc/ChangeLog
@@ -1,5 +1,12 @@
2021-06-16 Mike Frysinger <vapier@gentoo.org>
+ * basics.h (NORETURN): Delete.
+ * sim_callbacks.h: Include ansidecl.h. Change NORETURN to
+ ATTRIBUTE_NORETURN.
+ * sim_calls.c: Likewise.
+
+2021-06-16 Mike Frysinger <vapier@gentoo.org>
+
* basics.h (UNUSED): Delete.
* gen-icache.c (print_icache_extraction): Change UNUSED to
ATTRIBUTE_UNUSED.
diff --git a/sim/ppc/basics.h b/sim/ppc/basics.h
index a6a35ca..7b785b2 100644
--- a/sim/ppc/basics.h
+++ b/sim/ppc/basics.h
@@ -83,10 +83,6 @@ typedef enum {
#include <stdlib.h>
-#ifndef NORETURN
-#define NORETURN
-#endif
-
#if !defined (__attribute__)
#if (!defined(__GNUC__) \
|| (__GNUC__ < 2) \
diff --git a/sim/ppc/sim_callbacks.h b/sim/ppc/sim_callbacks.h
index 61c6e2f..e4d9c70 100644
--- a/sim/ppc/sim_callbacks.h
+++ b/sim/ppc/sim_callbacks.h
@@ -21,6 +21,8 @@
#ifndef _SIM_CALLBACKS_H_
#define _SIM_CALLBACKS_H_
+#include "ansidecl.h"
+
/* Simulator output:
Functions to report diagnostic information to the user. */
@@ -29,7 +31,7 @@
void sim_io_printf_filtered
(const char *msg, ...) __attribute__ ((format (printf, 1, 2)));
-void NORETURN error
+void ATTRIBUTE_NORETURN error
(const char *msg, ...);
diff --git a/sim/ppc/sim_calls.c b/sim/ppc/sim_calls.c
index ce4464a..14d4d65 100644
--- a/sim/ppc/sim_calls.c
+++ b/sim/ppc/sim_calls.c
@@ -30,6 +30,7 @@
#include <stdlib.h>
#include <string.h>
+#include "ansidecl.h"
#include "libiberty.h"
#include "bfd.h"
#include "sim/callback.h"
@@ -383,7 +384,7 @@ sim_io_error (SIM_DESC sd, const char *fmt, ...)
/****/
-void NORETURN
+void ATTRIBUTE_NORETURN
error (const char *msg, ...)
{
va_list ap;