mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
target/sh4: Update coding style to make checkpatch.pl happy
Avoid checkpatch.pl warnings in the next commit. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
This commit is contained in:
parent
45514b48df
commit
02b8e735c1
2 changed files with 10 additions and 6 deletions
|
@ -398,9 +398,11 @@ float32 helper_fsrra_FT(CPUSH4State *env, float32 t0)
|
|||
/* "Approximate" 1/sqrt(x) via actual computation. */
|
||||
t0 = float32_sqrt(t0, &env->fp_status);
|
||||
t0 = float32_div(float32_one, t0, &env->fp_status);
|
||||
/* Since this is supposed to be an approximation, an imprecision
|
||||
exception is required. One supposes this also follows the usual
|
||||
IEEE rule that other exceptions take precidence. */
|
||||
/*
|
||||
* Since this is supposed to be an approximation, an imprecision
|
||||
* exception is required. One supposes this also follows the usual
|
||||
* IEEE rule that other exceptions take precidence.
|
||||
*/
|
||||
if (get_float_exception_flags(&env->fp_status) == 0) {
|
||||
set_float_exception_flags(float_flag_inexact, &env->fp_status);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue