diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-07-01 11:08:50 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-10-31 18:28:33 +0100 |
commit | 1f7f72bdc4faece6af875503a3abe992e87e776b (patch) | |
tree | 7cee210aefdee3392fe36494184fc2041517b23b /target/i386/cpu.h | |
parent | f359b2fb71c379db28a5184b565f43af6b5ec268 (diff) | |
download | qemu-1f7f72bdc4faece6af875503a3abe992e87e776b.zip qemu-1f7f72bdc4faece6af875503a3abe992e87e776b.tar.gz qemu-1f7f72bdc4faece6af875503a3abe992e87e776b.tar.bz2 |
target/i386: Wrap cc_op_live with a validity check
Assert that op is known and that cc_op_live_ is populated.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target/i386/cpu.h')
-rw-r--r-- | target/i386/cpu.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target/i386/cpu.h b/target/i386/cpu.h index 1bf4dfd..a0a122c 100644 --- a/target/i386/cpu.h +++ b/target/i386/cpu.h @@ -1380,7 +1380,6 @@ typedef enum { #define CC_OP_LAST_BWLQ CC_OP_POPCNTQ__ CC_OP_DYNAMIC, /* must use dynamic code to get cc_op */ - CC_OP_NB, } CCOp; /* See X86DecodedInsn.cc_op, using int8_t. */ |