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

@ -1,3 +1,8 @@
start-sanitize-sky
Tue Apr 21 17:29:48 1998 Jim Lemke <jlemke@cygnus.com>
* sim-base.h: Add configure option --with-sim-funit.
end-sanitize-sky
Tue Apr 21 12:44:27 1998 Doug Evans <devans@canuck.cygnus.com>
* cgen-types.h (GETHIDI,MAKEDI): Tweak.

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;