diff options
author | Roman Bolshakov <r.bolshakov@yadro.com> | 2020-05-28 22:37:56 +0300 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-06-12 11:19:37 -0400 |
commit | 577f02b89049c4a466973ae2785c6928e00798c8 (patch) | |
tree | d679bf5ba003ce0eefb1dab3b80419f3574976c9 /target/i386/hvf/x86.h | |
parent | 167c6aef67dcf4f2d1c417db057ad95f84030180 (diff) | |
download | qemu-577f02b89049c4a466973ae2785c6928e00798c8.zip qemu-577f02b89049c4a466973ae2785c6928e00798c8.tar.gz qemu-577f02b89049c4a466973ae2785c6928e00798c8.tar.bz2 |
i386: hvf: Move lazy_flags into CPUX86State
The lazy flags are still needed for instruction decoder.
Signed-off-by: Roman Bolshakov <r.bolshakov@yadro.com>
Message-Id: <20200528193758.51454-12-r.bolshakov@yadro.com>
[Move struct to target/i386/cpu.h - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target/i386/hvf/x86.h')
-rw-r--r-- | target/i386/hvf/x86.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/target/i386/hvf/x86.h b/target/i386/hvf/x86.h index 6048b5c..2363616 100644 --- a/target/i386/hvf/x86.h +++ b/target/i386/hvf/x86.h @@ -228,14 +228,8 @@ typedef struct x68_segment_selector { }; } __attribute__ ((__packed__)) x68_segment_selector; -typedef struct lazy_flags { - target_ulong result; - target_ulong auxbits; -} lazy_flags; - /* Definition of hvf_x86_state is here */ struct HVFX86EmulatorState { - struct lazy_flags lflags; uint8_t mmio_buf[4096]; }; |