sim-base.h: Add configure option --with-sim-funit.

This commit is contained in:
James Lemke
1998-04-21 21:19:45 +00:00
parent 3e5fbf91b5
commit bd3aa7cbc7
2 changed files with 16 additions and 0 deletions

View File

@@ -214,6 +214,17 @@ typedef struct {
#define STATE_MEMOPT(sd) ((sd)->base.memopt)
sim_memopt *memopt;
/* start-sanitize-sky */
#ifdef TARGET_SKY
#ifdef SKY_FUNIT
/* Record of option for floating point implementation type. */
#define STATE_FP_TYPE_OPT(sd) ((sd)->base.fp_type_opt)
#define STATE_FP_TYPE_OPT_TARGET 0x80000000
int fp_type_opt;
#endif
#endif
/* end-sanitize-sky */
/* event handler */
#define STATE_EVENTS(sd) (&(sd)->base.events)
sim_events events;