2000-11-09 Ben Elliston <bje@redhat.com>
* sim-fpu.c (sim_fpu_one): Set exponent to 0. (sim_fpu_two): Set exponent to 1.
This commit is contained in:
parent
620abd4dfd
commit
dbc168afd2
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2000-11-09 Ben Elliston <bje@redhat.com>
|
||||
|
||||
* sim-fpu.c (sim_fpu_one): Set exponent to 0.
|
||||
(sim_fpu_two): Set exponent to 1.
|
||||
|
||||
2000-10-26 Ben Elliston <bje@redhat.com>
|
||||
|
||||
* cgen.sh: Handle an isa argument between cpu and mach. Default to
|
||||
|
|
|
@ -2456,10 +2456,10 @@ const sim_fpu sim_fpu_qnan = {
|
|||
sim_fpu_class_qnan,
|
||||
};
|
||||
const sim_fpu sim_fpu_one = {
|
||||
sim_fpu_class_number, 0, IMPLICIT_1, 1
|
||||
sim_fpu_class_number, 0, IMPLICIT_1, 0
|
||||
};
|
||||
const sim_fpu sim_fpu_two = {
|
||||
sim_fpu_class_number, 0, IMPLICIT_1, 2
|
||||
sim_fpu_class_number, 0, IMPLICIT_1, 1
|
||||
};
|
||||
const sim_fpu sim_fpu_max32 = {
|
||||
sim_fpu_class_number, 0, LSMASK64 (NR_FRAC_GUARD, NR_GUARDS32), NORMAL_EXPMAX32
|
||||
|
|
Loading…
Reference in a new issue