From 9312936603f4ed0de67aee3d1c4d714df16f995e Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 14 Mar 2015 03:42:08 -0400 Subject: 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. --- sim/common/sim-assert.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sim/common/sim-assert.h') diff --git a/sim/common/sim-assert.h b/sim/common/sim-assert.h index 3de8114..eaaf791 100644 --- a/sim/common/sim-assert.h +++ b/sim/common/sim-assert.h @@ -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 \ { \ -- cgit v1.1