diff options
| author | Pranith Kumar | 2016-08-10 20:55:02 +0200 |
|---|---|---|
| committer | Peter Maydell | 2016-08-15 17:15:38 +0200 |
| commit | dfd607671037ff46d5b16ade10e10efdf0d260be (patch) | |
| tree | e7b8a0d4f9baf16fef60ac5a33bdd7d9fb623362 /fpu | |
| parent | Revert "vhost-user: Attempt to fix a race with set_mem_table." (diff) | |
| download | qemu-dfd607671037ff46d5b16ade10e10efdf0d260be.tar.gz qemu-dfd607671037ff46d5b16ade10e10efdf0d260be.tar.xz qemu-dfd607671037ff46d5b16ade10e10efdf0d260be.zip | |
softfloat: Fix warn about implicit conversion from int to int8_t
Change the flag type to 'uint8_t' to fix the implicit conversion error.
Signed-off-by: Pranith Kumar <bobby.prani@gmail.com>
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Message-id: 20160810185502.32015-1-bobby.prani@gmail.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'fpu')
| -rw-r--r-- | fpu/softfloat-specialize.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpu/softfloat-specialize.h b/fpu/softfloat-specialize.h index 43d08903a5..f5aed72e8f 100644 --- a/fpu/softfloat-specialize.h +++ b/fpu/softfloat-specialize.h @@ -197,7 +197,7 @@ float128 float128_default_nan(float_status *status) | should be simply `float_exception_flags |= flags;'. *----------------------------------------------------------------------------*/ -void float_raise(int8_t flags, float_status *status) +void float_raise(uint8_t flags, float_status *status) { status->float_exception_flags |= flags; } |
