diff options
| author | Alex Bennée | 2019-08-08 18:30:35 +0200 |
|---|---|---|
| committer | Alex Bennée | 2019-08-19 13:07:13 +0200 |
| commit | 5f8ab0004e878a6cd0f50fa8659df4a4f853eea8 (patch) | |
| tree | f942a32c15139efcac19c814de1ec88982011f34 /target/s390x | |
| parent | target/riscv: rationalise softfloat includes (diff) | |
| download | qemu-5f8ab0004e878a6cd0f50fa8659df4a4f853eea8.tar.gz qemu-5f8ab0004e878a6cd0f50fa8659df4a4f853eea8.tar.xz qemu-5f8ab0004e878a6cd0f50fa8659df4a4f853eea8.zip | |
targets (various): use softfloat-helpers.h where we can
Generally the cpu and non-FP helper files just want to manipulate the
softfloat flags. For this they can just use the -helpers.h include
which brings in a minimal number of inline helpers.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'target/s390x')
| -rw-r--r-- | target/s390x/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/s390x/cpu.c b/target/s390x/cpu.c index 9466cd832d..3abe7e80fd 100644 --- a/target/s390x/cpu.c +++ b/target/s390x/cpu.c @@ -42,7 +42,7 @@ #include "sysemu/sysemu.h" #include "sysemu/tcg.h" #endif -#include "fpu/softfloat.h" +#include "fpu/softfloat-helpers.h" #define CR0_RESET 0xE0UL #define CR14_RESET 0xC2000000UL; |
