2001-11-17 Fred Fish <fnf@redhat.com>

* sim-main.h (float_operation): Move enum declaration outside
	of _sim_cpu struct declaration.
This commit is contained in:
Fred Fish 2001-11-18 06:00:29 +00:00
parent 4edb848c4e
commit 9e52972e45
2 changed files with 12 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2001-11-17 Fred Fish <fnf@redhat.com>
* sim-main.h (float_operation): Move enum declaration outside
of _sim_cpu struct declaration.
2001-04-12 Jim Blandy <jimb@redhat.com>
* mips.igen (CFC1, CTC1): Pass the correct register numbers to

View File

@ -297,6 +297,13 @@ do { \
} while (0)
enum float_operation
{
FLOP_ADD, FLOP_SUB, FLOP_MUL, FLOP_MADD,
FLOP_MSUB, FLOP_MAX=10, FLOP_MIN, FLOP_ABS,
FLOP_ITOF0=14, FLOP_FTOI0=18, FLOP_NEG=23
};
struct _sim_cpu {
@ -362,13 +369,6 @@ struct _sim_cpu {
#endif
enum float_operation
{
FLOP_ADD, FLOP_SUB, FLOP_MUL, FLOP_MADD,
FLOP_MSUB, FLOP_MAX=10, FLOP_MIN, FLOP_ABS,
FLOP_ITOF0=14, FLOP_FTOI0=18, FLOP_NEG=23
};
/* To keep this default simulator simple, and fast, we use a direct
vector of registers. The internal simulator engine then uses
manifests to access the correct slot. */