mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
tcg-sparc: Fix ADDX opcode.
Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
3ee60ad44a
commit
a221ae3fcc
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ static inline int tcg_target_const_match(tcg_target_long val,
|
|||
#define ARITH_XOR (INSN_OP(2) | INSN_OP3(0x03))
|
||||
#define ARITH_SUB (INSN_OP(2) | INSN_OP3(0x04))
|
||||
#define ARITH_SUBCC (INSN_OP(2) | INSN_OP3(0x14))
|
||||
#define ARITH_ADDX (INSN_OP(2) | INSN_OP3(0x10))
|
||||
#define ARITH_ADDX (INSN_OP(2) | INSN_OP3(0x08))
|
||||
#define ARITH_SUBX (INSN_OP(2) | INSN_OP3(0x0c))
|
||||
#define ARITH_UMUL (INSN_OP(2) | INSN_OP3(0x0a))
|
||||
#define ARITH_UDIV (INSN_OP(2) | INSN_OP3(0x0e))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue