mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-21 04:42:53 +08:00
c743e42e22
Limit these extra header includes to only when specific igen files include us until we can move the includes to the igen fils directly.
19 lines
411 B
C
19 lines
411 B
C
#ifndef SIM_MAIN_H
|
|
#define SIM_MAIN_H
|
|
|
|
#include "sim-basics.h"
|
|
#include "sim-base.h"
|
|
|
|
/**
|
|
* TODO: Move these includes to the igen files that need them.
|
|
* This requires extending the igen syntax to support header includes.
|
|
*/
|
|
#if defined(SEMANTICS_C) || defined(SUPPORT_C)
|
|
#include "sim-signal.h"
|
|
#endif
|
|
#if defined(ENGINE_C) || defined(IDECODE_C) || defined(SEMANTICS_C)
|
|
#include "v850-sim.h"
|
|
#endif
|
|
|
|
#endif
|