diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2023-10-25 21:14:04 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-11-06 08:27:21 -0800 |
commit | b701f195d3ed39429fab5787df7c6b1c9377ab94 (patch) | |
tree | c19435be42564e1ad6d7ffe00283283d8fe7f3af /tcg/tci.c | |
parent | 0fbee2b76441db5452cde98148f600aba907f4f7 (diff) | |
download | qemu-b701f195d3ed39429fab5787df7c6b1c9377ab94.zip qemu-b701f195d3ed39429fab5787df7c6b1c9377ab94.tar.gz qemu-b701f195d3ed39429fab5787df7c6b1c9377ab94.tar.bz2 |
tcg: Remove TCG_TARGET_HAS_neg_{i32,i64}
The movcond opcode is now mandatory for backends to implement.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20231026041404.1229328-7-richard.henderson@linaro.org>
Diffstat (limited to 'tcg/tci.c')
-rw-r--r-- | tcg/tci.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -733,12 +733,10 @@ uintptr_t QEMU_DISABLE_CFI tcg_qemu_tb_exec(CPUArchState *env, regs[r0] = ~regs[r1]; break; #endif -#if TCG_TARGET_HAS_neg_i32 || TCG_TARGET_HAS_neg_i64 CASE_32_64(neg) tci_args_rr(insn, &r0, &r1); regs[r0] = -regs[r1]; break; -#endif #if TCG_TARGET_REG_BITS == 64 /* Load/store operations (64 bit). */ |