diff options
author | Roman Bolshakov <r.bolshakov@yadro.com> | 2020-05-28 22:37:54 +0300 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-06-12 11:15:02 -0400 |
commit | ea48ae91210eae3cb7d3576d2dc8152529d5f962 (patch) | |
tree | 7f5fa7d02fc7bf1e625e83907f1f56f40d5cd0be /target/i386/hvf/x86.h | |
parent | 967f4da2afb2ece8b2b054bc8af23389e028fdcc (diff) | |
download | qemu-ea48ae91210eae3cb7d3576d2dc8152529d5f962.zip qemu-ea48ae91210eae3cb7d3576d2dc8152529d5f962.tar.gz qemu-ea48ae91210eae3cb7d3576d2dc8152529d5f962.tar.bz2 |
i386: hvf: Drop copy of RFLAGS defines
Use the ones provided in target/i386/cpu.h instead.
Signed-off-by: Roman Bolshakov <r.bolshakov@yadro.com>
Message-Id: <20200528193758.51454-10-r.bolshakov@yadro.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target/i386/hvf/x86.h')
-rw-r--r-- | target/i386/hvf/x86.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/target/i386/hvf/x86.h b/target/i386/hvf/x86.h index e309b8f..f0d03fa 100644 --- a/target/i386/hvf/x86.h +++ b/target/i386/hvf/x86.h @@ -42,26 +42,6 @@ typedef struct x86_register { }; } __attribute__ ((__packed__)) x86_register; -typedef enum x86_rflags { - RFLAGS_CF = (1L << 0), - RFLAGS_PF = (1L << 2), - RFLAGS_AF = (1L << 4), - RFLAGS_ZF = (1L << 6), - RFLAGS_SF = (1L << 7), - RFLAGS_TF = (1L << 8), - RFLAGS_IF = (1L << 9), - RFLAGS_DF = (1L << 10), - RFLAGS_OF = (1L << 11), - RFLAGS_IOPL = (3L << 12), - RFLAGS_NT = (1L << 14), - RFLAGS_RF = (1L << 16), - RFLAGS_VM = (1L << 17), - RFLAGS_AC = (1L << 18), - RFLAGS_VIF = (1L << 19), - RFLAGS_VIP = (1L << 20), - RFLAGS_ID = (1L << 21), -} x86_rflags; - typedef enum x86_reg_cr0 { CR0_PE = (1L << 0), CR0_MP = (1L << 1), |