diff options
author | Marc-André Lureau | 2022-03-23 16:57:39 +0100 |
---|---|---|
committer | Paolo Bonzini | 2022-04-06 14:31:43 +0200 |
commit | 69242e7e7ea55f2a3f4fa50e367cad849c9cdc36 (patch) | |
tree | 70b4ad63c8071055e6595a5fbb2a9f171afabd6e /target/microblaze | |
parent | include: move page_size_init() to include/hw/core/cpu.h (diff) | |
download | qemu-69242e7e7ea55f2a3f4fa50e367cad849c9cdc36.tar.gz qemu-69242e7e7ea55f2a3f4fa50e367cad849c9cdc36.tar.xz qemu-69242e7e7ea55f2a3f4fa50e367cad849c9cdc36.zip |
Move CPU softfloat unions to cpu-float.h
The types are no longer used in bswap.h since commit
f930224fffe ("bswap.h: Remove unused float-access functions"), there
isn't much sense in keeping it there and having a dependency on fpu/.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20220323155743.1585078-29-marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target/microblaze')
-rw-r--r-- | target/microblaze/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/microblaze/cpu.h b/target/microblaze/cpu.h index 0a0ce71b6a..67aa88b8db 100644 --- a/target/microblaze/cpu.h +++ b/target/microblaze/cpu.h @@ -22,7 +22,7 @@ #include "cpu-qom.h" #include "exec/cpu-defs.h" -#include "fpu/softfloat-types.h" +#include "qemu/cpu-float.h" typedef struct CPUArchState CPUMBState; #if !defined(CONFIG_USER_ONLY) |