diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-11-11 19:49:51 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-11-11 19:49:51 +0000 |
commit | b0b3de8988b9f95f168ef94f8e918402d331db63 (patch) | |
tree | d33869eb3c35ab9d624bdf515cdd974f650e19ad /target-sh4/translate.c | |
parent | 83f59879561bdc5fa0ff61e536f9c0c415be5e7f (diff) | |
download | hqemu-b0b3de8988b9f95f168ef94f8e918402d331db63.zip hqemu-b0b3de8988b9f95f168ef94f8e918402d331db63.tar.gz |
fixed FPU rounding init
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3615 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sh4/translate.c')
-rw-r--r-- | target-sh4/translate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target-sh4/translate.c b/target-sh4/translate.c index 8d5e99e..70b4837 100644 --- a/target-sh4/translate.c +++ b/target-sh4/translate.c @@ -133,10 +133,10 @@ void cpu_sh4_reset(CPUSH4State * env) env->pc = 0xA0000000; #if defined(CONFIG_USER_ONLY) env->fpscr = FPSCR_PR; /* value for userspace according to the kernel */ - env->fp_status.float_rounding_mode = float_round_nearest_even; /* ?! */ + set_float_rounding_mode(float_round_nearest_even, &env->fp_status); /* ?! */ #else env->fpscr = 0x00040001; /* CPU reset value according to SH4 manual */ - env->fp_status.float_rounding_mode = float_round_to_zero; + set_float_rounding_mode(float_round_to_zero, &env->fp_status); #endif env->mmucr = 0; } |