diff options
| author | Peter Maydell | 2011-04-12 14:56:40 +0200 |
|---|---|---|
| committer | Aurelien Jarno | 2011-04-12 23:33:33 +0200 |
| commit | c29aca44614e12a310dd903dc4fd56b14a6b71c9 (patch) | |
| tree | 0070a566c0fa3c3bdd49766de23f84474c083549 | |
| parent | target-arm: Handle UNDEF cases for VDUP (scalar) (diff) | |
| download | qemu-c29aca44614e12a310dd903dc4fd56b14a6b71c9.tar.gz qemu-c29aca44614e12a310dd903dc4fd56b14a6b71c9.tar.xz qemu-c29aca44614e12a310dd903dc4fd56b14a6b71c9.zip | |
softfloat: Add setter function for tininess detection mode
Add a setter function for the underflow tininess detection mode,
in line with the similar functions for other parts of the float status
structure.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
| -rw-r--r-- | fpu/softfloat.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fpu/softfloat.h b/fpu/softfloat.h index 7abcbe899e..c7654d4c63 100644 --- a/fpu/softfloat.h +++ b/fpu/softfloat.h @@ -211,6 +211,10 @@ typedef struct float_status { void set_float_rounding_mode(int val STATUS_PARAM); void set_float_exception_flags(int val STATUS_PARAM); +INLINE void set_float_detect_tininess(int val STATUS_PARAM) +{ + STATUS(float_detect_tininess) = val; +} INLINE void set_flush_to_zero(flag val STATUS_PARAM) { STATUS(flush_to_zero) = val; |
