Skip to content

Commit

Permalink
Revert "Change return type for vcpop and vfirst to uint and int"
Browse files Browse the repository at this point in the history
This reverts commit 995cbb8.
  • Loading branch information
topperc committed Jun 11, 2024
1 parent 2d709dc commit 079b461
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ def render(G, op_list, type_list, sew_list, lmul_list, decorator_list):
G.func(
inst_info_m,
name="{OP}_m_b{MLEN}".format_map(args) + decorator.func_suffix,
return_type=type_helper.uint,
return_type=type_helper.ulong,
**decorator.mask_args(type_helper.m),
vs2=type_helper.m,
vl=type_helper.size_t)
elif op == "first":
G.func(
inst_info_m,
name="{OP}_m_b{MLEN}".format_map(args) + decorator.func_suffix,
return_type=type_helper.int,
return_type=type_helper.long,
**decorator.mask_args(type_helper.m),
vs2=type_helper.m,
vl=type_helper.size_t)
Expand Down

0 comments on commit 079b461

Please sign in to comment.