diff options
Diffstat (limited to 'sim/common')
-rw-r--r-- | sim/common/ChangeLog | 4 | ||||
-rw-r--r-- | sim/common/sim-fpu.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index ddca266..3aa491a 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,7 @@ +2010-04-23 Mike Frysinger <vapier@gentoo.org> + + * sim-fpu.c (sim_fpu_zero, sim_fpu_qnan): Add 0 initializers. + 2010-04-21 Mike Frysinger <vapier@gentoo.org> * profile.c (sim_profile_print_bar): Add cpu argument. diff --git a/sim/common/sim-fpu.c b/sim/common/sim-fpu.c index 7af6170..6f1bad5 100644 --- a/sim/common/sim-fpu.c +++ b/sim/common/sim-fpu.c @@ -2425,10 +2425,10 @@ sim_fpu_gt (int *is, #if EXTERN_SIM_FPU_P const sim_fpu sim_fpu_zero = { - sim_fpu_class_zero, + sim_fpu_class_zero, 0, 0, 0 }; const sim_fpu sim_fpu_qnan = { - sim_fpu_class_qnan, + sim_fpu_class_qnan, 0, 0, 0 }; const sim_fpu sim_fpu_one = { sim_fpu_class_number, 0, IMPLICIT_1, 0 |