Skip to content

Commit 79014d0

Browse files
authored
fix symbolic helper for sextract_i64
1 parent f6adce9 commit 79014d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tcg/tcg-op.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2656,7 +2656,7 @@ void tcg_gen_sextract_i64(TCGv_i64 ret, TCGv_i64 arg,
26562656
TCGv_i64 ofs_tmp, len_tmp;
26572657
ofs_tmp = tcg_const_i64(ofs);
26582658
len_tmp = tcg_const_i64(len);
2659-
gen_helper_sym_extract_i64(
2659+
gen_helper_sym_sextract_i64(
26602660
tcgv_i64_expr(ret), tcgv_i64_expr(arg), ofs_tmp, len_tmp);
26612661
tcg_temp_free_i64(ofs_tmp);
26622662
tcg_temp_free_i64(len_tmp);

0 commit comments

Comments
 (0)