aboutsummaryrefslogtreecommitdiff
path: root/src/zig_llvm.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-07-20 12:55:03 -0700
committerGitHub <noreply@github.com>2023-07-20 12:55:03 -0700
commit3f15010abe5c5efaed16799fcb94c9f84117bdde (patch)
treef1892ab71f40a4473c35783ac88d86e4290dc0e5 /src/zig_llvm.cpp
parent3bada8e3ce9ba72f57c6fbed100c76fd40ba0d15 (diff)
parent4d31d4d875f32ed49c56151ca053a614b3ae343c (diff)
downloadzig-3f15010abe5c5efaed16799fcb94c9f84117bdde.tar.gz
zig-3f15010abe5c5efaed16799fcb94c9f84117bdde.zip
Merge pull request #16430 from jacobly0/llvm-builder
llvm: begin the journey of independence from llvm
Diffstat (limited to 'src/zig_llvm.cpp')
-rw-r--r--src/zig_llvm.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/zig_llvm.cpp b/src/zig_llvm.cpp
index b04356bf4d..26ea04aca6 100644
--- a/src/zig_llvm.cpp
+++ b/src/zig_llvm.cpp
@@ -560,10 +560,6 @@ LLVMValueRef ZigLLVMBuildUShlSat(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRe
return wrap(call_inst);
}
-LLVMValueRef LLVMBuildVectorSplat(LLVMBuilderRef B, unsigned elem_count, LLVMValueRef V, const char *Name) {
- return wrap(unwrap(B)->CreateVectorSplat(elem_count, unwrap(V), Name));
-}
-
void ZigLLVMFnSetSubprogram(LLVMValueRef fn, ZigLLVMDISubprogram *subprogram) {
assert( isa<Function>(unwrap(fn)) );
Function *unwrapped_function = reinterpret_cast<Function*>(unwrap(fn));