summaryrefslogtreecommitdiff
path: root/sim/msp430
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2021-06-13 23:16:32 -0400
committerMike Frysinger <vapier@gentoo.org>2021-06-18 00:50:14 -0400
commit1fef66b0dcc09c9114100e782ea54594550e8fb7 (patch)
tree4c7e4fe60f287d3db75997d7affb763c0e77608f /sim/msp430
parent7039b291607e4d890679cb3fe401d37228992213 (diff)
downloadbinutils-gdb-1fef66b0dcc09c9114100e782ea54594550e8fb7.tar.gz
sim: split sim-signal.h include out
The sim-basics.h is too big and includes too many things. This leads to some arch's sim-main.h having circular loop issues with defs, and makes it hard to separate out common objects from arch-specific defs. By splitting up sim-basics.h and killing off sim-main.h, it'll make it easier to separate out the two.
Diffstat (limited to 'sim/msp430')
-rw-r--r--sim/msp430/ChangeLog5
-rw-r--r--sim/msp430/msp430-sim.c1
-rw-r--r--sim/msp430/sim-main.h1
3 files changed, 6 insertions, 1 deletions
diff --git a/sim/msp430/ChangeLog b/sim/msp430/ChangeLog
index a78d476516c..08743987d43 100644
--- a/sim/msp430/ChangeLog
+++ b/sim/msp430/ChangeLog
@@ -1,3 +1,8 @@
+2021-06-18 Mike Frysinger <vapier@gentoo.org>
+
+ * msp430-sim.c: Include sim-signal.h.
+ * sim-main.h: Delete sim-signal.h include.
+
2021-06-17 Mike Frysinger <vapier@gentoo.org>
* configure.ac: Delete SIM_AC_OPTION_ENDIAN call.
diff --git a/sim/msp430/msp430-sim.c b/sim/msp430/msp430-sim.c
index ed0393317c1..c9bb9c78db6 100644
--- a/sim/msp430/msp430-sim.c
+++ b/sim/msp430/msp430-sim.c
@@ -30,6 +30,7 @@
#include <assert.h>
#include "opcode/msp430-decode.h"
#include "sim-main.h"
+#include "sim-signal.h"
#include "sim-syscall.h"
#include "targ-vals.h"
diff --git a/sim/msp430/sim-main.h b/sim/msp430/sim-main.h
index fdfa5d09456..68910046997 100644
--- a/sim/msp430/sim-main.h
+++ b/sim/msp430/sim-main.h
@@ -22,7 +22,6 @@
#define _MSP430_MAIN_SIM_H_
#include "sim-basics.h"
-#include "sim-signal.h"
#include "msp430-sim.h"
#include "sim-base.h"