diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-01-06 23:37:54 -0800 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-04-28 13:40:16 -0700 |
| commit | 592982bf04cfa92dc4c992056c7330ac46f4882f (patch) | |
| tree | b423ffc14b76310be82076b0213ebd19a98feccd /tcg/tci.c | |
| parent | 6971358747d8998a5770d1bf997495d3061d6c6a (diff) | |
| download | focaccia-qemu-592982bf04cfa92dc4c992056c7330ac46f4882f.tar.gz focaccia-qemu-592982bf04cfa92dc4c992056c7330ac46f4882f.zip | |
tcg: Convert not to TCGOutOpUnary
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/tci.c')
| -rw-r--r-- | tcg/tci.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tcg/tci.c b/tcg/tci.c index c736691e9f..25ad37fcd5 100644 --- a/tcg/tci.c +++ b/tcg/tci.c @@ -695,12 +695,10 @@ uintptr_t QEMU_DISABLE_CFI tcg_qemu_tb_exec(CPUArchState *env, regs[r0] = bswap32(regs[r1]); break; #endif -#if TCG_TARGET_HAS_not_i32 || TCG_TARGET_HAS_not_i64 CASE_32_64(not) tci_args_rr(insn, &r0, &r1); regs[r0] = ~regs[r1]; break; -#endif #if TCG_TARGET_REG_BITS == 64 /* Load/store operations (64 bit). */ |