mirror of https://github.com/xqemu/xqemu.git
tcg/arm: sxtb and sxth are available starting with ARMv6
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
ac34fb5c5d
commit
8f7f749f21
|
@ -1478,7 +1478,7 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case INDEX_op_ext8s_i32:
|
case INDEX_op_ext8s_i32:
|
||||||
if (use_armv7_instructions) {
|
if (use_armv6_instructions) {
|
||||||
/* sxtb */
|
/* sxtb */
|
||||||
tcg_out32(s, 0xe6af0070 | (args[0] << 12) | args[1]);
|
tcg_out32(s, 0xe6af0070 | (args[0] << 12) | args[1]);
|
||||||
} else {
|
} else {
|
||||||
|
@ -1489,7 +1489,7 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case INDEX_op_ext16s_i32:
|
case INDEX_op_ext16s_i32:
|
||||||
if (use_armv7_instructions) {
|
if (use_armv6_instructions) {
|
||||||
/* sxth */
|
/* sxth */
|
||||||
tcg_out32(s, 0xe6bf0070 | (args[0] << 12) | args[1]);
|
tcg_out32(s, 0xe6bf0070 | (args[0] << 12) | args[1]);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue