Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tcg/tcg-op.c
Original file line number Diff line number Diff line change
Expand Up @@ -3227,7 +3227,7 @@ void tcg_gen_sextract_i64(TCGv_i64 ret, TCGv_i64 arg,

if (TCG_TARGET_HAS_sextract_i64
&& TCG_TARGET_extract_i64_valid(ofs, len)) {
gen_helper_sym_extract_i64(
gen_helper_sym_sextract_i64(
tcgv_i64_expr(ret), tcgv_i64_expr(arg), tcg_constant_i64(ofs), tcg_constant_i64(len));
tcg_gen_op4ii_i64(INDEX_op_sextract_i64, ret, arg, ofs, len);
return;
Expand Down