Skip to content

Commit 6e37dd2

Browse files
authored
Fix symbolic helper for sextract_i64 (#34)
In tcg_gen_sextract_i64: symbolic handler was incorrectly set to gen_helper_extract_i64 instead of gen_helper_sextract_i64
1 parent 5fe56cd commit 6e37dd2

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
@@ -3240,7 +3240,7 @@ void tcg_gen_sextract_i64(TCGv_i64 ret, TCGv_i64 arg,
32403240

32413241
if (TCG_TARGET_HAS_sextract_i64
32423242
&& TCG_TARGET_extract_i64_valid(ofs, len)) {
3243-
gen_helper_sym_extract_i64(
3243+
gen_helper_sym_sextract_i64(
32443244
tcgv_i64_expr(ret), tcgv_i64_expr(arg), tcg_constant_i64(ofs), tcg_constant_i64(len));
32453245
tcg_gen_op4ii_i64(INDEX_op_sextract_i64, ret, arg, ofs, len);
32463246
return;

0 commit comments

Comments
 (0)