mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
target-i386: Add CC_OP_CLR
Special case xor with self. We need not even store the known zero into cc_src. Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
321c535105
commit
436ff2d227
4 changed files with 21 additions and 3 deletions
|
@ -645,6 +645,8 @@ typedef enum {
|
|||
CC_OP_ADOX, /* CC_DST = O, CC_SRC = rest. */
|
||||
CC_OP_ADCOX, /* CC_DST = C, CC_SRC2 = O, CC_SRC = rest. */
|
||||
|
||||
CC_OP_CLR, /* Z set, all other flags clear. */
|
||||
|
||||
CC_OP_NB,
|
||||
} CCOp;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue