Skip to content

Commit 96c5a7d

Browse files
committed
remove extra type that caused assertion failures
1 parent a62cd02 commit 96c5a7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/llvm_intrin/masks.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ function bzhi_quote(b)
333333
instr = "i$b @llvm.x86.bmi.bzhi.$b"
334334
decl = "declare $instr(i$b, i$b) nounwind readnone"
335335
instrs = "%res = call $instr(i$b %0, i$b %1)\n ret i$b %res"
336-
llvmcall_expr(decl, instrs, T, :(Tuple{$T,$T}), typ, [typ, typ, typ], [:a, :b])
336+
llvmcall_expr(decl, instrs, T, :(Tuple{$T,$T}), typ, [typ, typ], [:a, :b])
337337
end
338338
@generated bzhi(a::UInt32, b::UInt32) = bzhi_quote(32)
339339
@generated bzhi(a::UInt64, b::UInt64) = bzhi_quote(64)

0 commit comments

Comments
 (0)