diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-01-08 17:07:01 -0800 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-04-28 13:40:16 -0700 |
| commit | c96447d838d67db509cde1a190132e14b8672055 (patch) | |
| tree | bf851756db9db2b5f18f4f4b63d9419722e2c2fa /tcg/tci/tcg-target.c.inc | |
| parent | e3fcde59c92fb421789890c145d5fffdd3d1672d (diff) | |
| download | focaccia-qemu-c96447d838d67db509cde1a190132e14b8672055.tar.gz focaccia-qemu-c96447d838d67db509cde1a190132e14b8672055.zip | |
tcg: Merge INDEX_op_ctz_{i32,i64}
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/tci/tcg-target.c.inc')
| -rw-r--r-- | tcg/tci/tcg-target.c.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/tci/tcg-target.c.inc b/tcg/tci/tcg-target.c.inc index 47bdec5f44..d8d45e2c4b 100644 --- a/tcg/tci/tcg-target.c.inc +++ b/tcg/tci/tcg-target.c.inc @@ -645,7 +645,7 @@ static void tgen_ctz(TCGContext *s, TCGType type, { TCGOpcode opc = (type == TCG_TYPE_I32 ? INDEX_op_tci_ctz32 - : INDEX_op_ctz_i64); + : INDEX_op_ctz); tcg_out_op_rrr(s, opc, a0, a1, a2); } |