aboutsummaryrefslogtreecommitdiff
path: root/sim/common/sim-base.h
diff options
context:
space:
mode:
authorJames Lemke <jlemke@cygnus>1998-04-21 21:19:45 +0000
committerJames Lemke <jlemke@cygnus>1998-04-21 21:19:45 +0000
commitbd3aa7cbc757452d500be56d83c9e07a35c104e8 (patch)
treee495517e59b568dca863f98a48494828ac431a2f /sim/common/sim-base.h
parent3e5fbf91b5c68d344d1ae6314ffb0e360a840ba4 (diff)
downloadgdb-bd3aa7cbc757452d500be56d83c9e07a35c104e8.zip
gdb-bd3aa7cbc757452d500be56d83c9e07a35c104e8.tar.gz
gdb-bd3aa7cbc757452d500be56d83c9e07a35c104e8.tar.bz2
sim-base.h: Add configure option --with-sim-funit.
Diffstat (limited to 'sim/common/sim-base.h')
-rw-r--r--sim/common/sim-base.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/sim/common/sim-base.h b/sim/common/sim-base.h
index c8c6a5e..c455f41 100644
--- a/sim/common/sim-base.h
+++ b/sim/common/sim-base.h
@@ -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;