target-i386: Name the cc_op enumeration
Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
c7b3c87397
commit
fee71888a2
@ -582,7 +582,7 @@ typedef uint32_t FeatureWordArray[FEATURE_WORDS];
|
||||
#define CPU_INTERRUPT_TPR CPU_INTERRUPT_TGT_INT_3
|
||||
|
||||
|
||||
enum {
|
||||
typedef enum {
|
||||
CC_OP_DYNAMIC, /* must use dynamic code to get cc_op */
|
||||
CC_OP_EFLAGS, /* all cc are explicitly computed, CC_SRC = flags */
|
||||
|
||||
@ -637,7 +637,7 @@ enum {
|
||||
CC_OP_SARQ,
|
||||
|
||||
CC_OP_NB,
|
||||
};
|
||||
} CCOp;
|
||||
|
||||
typedef struct SegmentCache {
|
||||
uint32_t selector;
|
||||
|
@ -89,7 +89,7 @@ typedef struct DisasContext {
|
||||
int rex_x, rex_b;
|
||||
#endif
|
||||
int ss32; /* 32 bit stack segment */
|
||||
int cc_op; /* current CC operation */
|
||||
CCOp cc_op; /* current CC operation */
|
||||
int addseg; /* non zero if either DS/ES/SS have a non zero base */
|
||||
int f_st; /* currently unused */
|
||||
int vm86; /* vm86 mode */
|
||||
|
Loading…
Reference in New Issue
Block a user