Skip to content

Commit

Permalink
Initial fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gbaraldi authored and maleadt committed Mar 17, 2023
1 parent 00e61c8 commit 27f3389
Show file tree
Hide file tree
Showing 10 changed files with 6,609 additions and 106 deletions.
4 changes: 2 additions & 2 deletions lib/13/libLLVM_h.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4746,8 +4746,8 @@ function LLVMBuildCall(arg1, Fn, Args, NumArgs, Name)
ccall((:LLVMBuildCall, libllvm), LLVMValueRef, (LLVMBuilderRef, LLVMValueRef, Ptr{LLVMValueRef}, Cuint, Cstring), arg1, Fn, Args, NumArgs, Name)
end

function LLVMBuildCall2(arg1, arg2, Fn, Args, NumArgs, Name)
ccall((:LLVMBuildCall2, libllvm), LLVMValueRef, (LLVMBuilderRef, LLVMTypeRef, LLVMValueRef, Ptr{LLVMValueRef}, Cuint, Cstring), arg1, arg2, Fn, Args, NumArgs, Name)
function LLVMBuildCall2(arg1, Ty, Fn, Args, NumArgs, Name)
ccall((:LLVMBuildCall2, libllvm), LLVMValueRef, (LLVMBuilderRef, LLVMTypeRef, LLVMValueRef, Ptr{LLVMValueRef}, Cuint, Cstring), arg1, Ty, Fn, Args, NumArgs, Name)
end

function LLVMBuildSelect(arg1, If, Then, Else, Name)
Expand Down
Loading

0 comments on commit 27f3389

Please sign in to comment.