Skip to content

Commit a503c76

Browse files
authored
Merge pull request #221 from maleadt/tb/splat_llvmcall
Never splat in llvmcall.
2 parents 32ca651 + 04d2cfb commit a503c76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interop/base.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function call_function(llvmf::LLVM.Function, rettyp::Type=Nothing, argtyp::Type=
7979
ptr = convert(Ptr{Cvoid},ref)
8080
quote
8181
Base.@_inline_meta
82-
Base.llvmcall($ptr, $rettyp, $argtyp, $args...)
82+
Base.llvmcall($ptr, $rettyp, $argtyp, $(args.args...))
8383
end
8484
end
8585
end

0 commit comments

Comments
 (0)