diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-01-06 12:26:28 -0800 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-04-28 13:40:15 -0700 |
| commit | a341c84e8153b7282b083e871ca534f15fa70898 (patch) | |
| tree | 3627fcac94cfe78912444d14bfd0c2231ab75fa9 /tcg/mips/tcg-target.c.inc | |
| parent | 93a9ddb84ae534a04e8d7764caa9e29b8285b2b1 (diff) | |
| download | focaccia-qemu-a341c84e8153b7282b083e871ca534f15fa70898.tar.gz focaccia-qemu-a341c84e8153b7282b083e871ca534f15fa70898.zip | |
tcg: Convert andc to TCGOutOpBinary
At the same time, drop all backend support for immediate operands, as we now transform andc to and during optimize. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/mips/tcg-target.c.inc')
| -rw-r--r-- | tcg/mips/tcg-target.c.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tcg/mips/tcg-target.c.inc b/tcg/mips/tcg-target.c.inc index 460f73d06a..ab57c78095 100644 --- a/tcg/mips/tcg-target.c.inc +++ b/tcg/mips/tcg-target.c.inc @@ -1708,6 +1708,10 @@ static const TCGOutOpBinary outop_and = { .out_rri = tgen_andi, }; +static const TCGOutOpBinary outop_andc = { + .base.static_constraint = C_NotImplemented, +}; + static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type, const TCGArg args[TCG_MAX_OP_ARGS], |