diff options
author | Richard Henderson | 2021-12-17 17:57:14 +0100 |
---|---|---|
committer | Cédric Le Goater | 2021-12-17 17:57:14 +0100 |
commit | bead3c9b0ff8efd652afb27923d8ab4458b3bbd9 (patch) | |
tree | 5c4dfc0a64e16129be9d3a2185e4db340951d032 /include/fpu/softfloat-types.h | |
parent | softfloat: Add flag specific to Inf - Inf (diff) | |
download | qemu-bead3c9b0ff8efd652afb27923d8ab4458b3bbd9.tar.gz qemu-bead3c9b0ff8efd652afb27923d8ab4458b3bbd9.tar.xz qemu-bead3c9b0ff8efd652afb27923d8ab4458b3bbd9.zip |
softfloat: Add flag specific to Inf * 0
PowerPC has this flag, and it's easier to compute it here
than after the fact.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20211119160502.17432-4-richard.henderson@linaro.org>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Diffstat (limited to 'include/fpu/softfloat-types.h')
-rw-r--r-- | include/fpu/softfloat-types.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/fpu/softfloat-types.h b/include/fpu/softfloat-types.h index eaa12e1e00..56b4cf7835 100644 --- a/include/fpu/softfloat-types.h +++ b/include/fpu/softfloat-types.h @@ -153,6 +153,7 @@ enum { float_flag_input_denormal = 0x0020, float_flag_output_denormal = 0x0040, float_flag_invalid_isi = 0x0080, /* inf - inf */ + float_flag_invalid_imz = 0x0100, /* inf * 0 */ }; /* |