sim: move sim-io.h to sim-assert.h

Since sim-endian.c doesn't actually use sim_io funcs, it's weird to
include the sim-io.h header here.  It's doing so only for the assert
header.  So lets relocate the include to the right place.
This commit is contained in:
Mike Frysinger 2015-03-14 03:42:08 -04:00
parent e94dfb0747
commit 9312936603
3 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2015-03-14 Mike Frysinger <vapier@gentoo.org>
* sim-assert.h [!SIM_ASSERT, WITH_ASSERT]: Include sim-io.h.
[!ASSERT, WITH_ASSERT]: Likewise.
* sim-endian.c: Delete sim-io.h include.
2015-02-19 Mike Frysinger <vapier@gentoo.org>
* run-sim.h (sim_kill): Delete unused prototype.

View File

@ -42,6 +42,7 @@ while (0)
#if !defined (SIM_ASSERT)
#if defined (WITH_ASSERT)
#include "sim-io.h"
#define SIM_ASSERT(EXPRESSION) \
do \
{ \
@ -65,6 +66,7 @@ while (0)
#if !defined (ASSERT)
#if defined (WITH_ASSERT)
#include "sim-io.h"
#define ASSERT(EXPRESSION) \
do \
{ \

View File

@ -25,7 +25,6 @@
#include "sim-basics.h"
#include "sim-assert.h"
#include "sim-io.h"
#if !defined(_SWAP_1)