diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-01-12 21:30:10 -0800 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-04-28 13:40:17 -0700 |
| commit | c8f9f70047e17ce70e016bc59fe7857123f3cbd5 (patch) | |
| tree | 6f1941b57043c7833e0c241a2b8373b21ac18ec3 /tcg/mips/tcg-target.c.inc | |
| parent | 4d137ff819bae33d045f13bb9186e3a2c71cb7e4 (diff) | |
| download | focaccia-qemu-c8f9f70047e17ce70e016bc59fe7857123f3cbd5.tar.gz focaccia-qemu-c8f9f70047e17ce70e016bc59fe7857123f3cbd5.zip | |
tcg: Convert extract2 to TCGOutOpExtract2
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@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 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tcg/mips/tcg-target.c.inc b/tcg/mips/tcg-target.c.inc index cd648ab1df..7fae1c51e9 100644 --- a/tcg/mips/tcg-target.c.inc +++ b/tcg/mips/tcg-target.c.inc @@ -2273,6 +2273,11 @@ static const TCGOutOpExtract outop_sextract = { .out_rr = tgen_sextract, }; +static const TCGOutOpExtract2 outop_extract2 = { + .base.static_constraint = C_NotImplemented, +}; + + static void tcg_out_op(TCGContext *s, TCGOpcode opc, TCGType type, const TCGArg args[TCG_MAX_OP_ARGS], const int const_args[TCG_MAX_OP_ARGS]) |