aboutsummaryrefslogtreecommitdiff
path: root/src/codegen
diff options
context:
space:
mode:
authorantlilja <liljaanton2001@gmail.com>2024-09-01 14:21:19 +0200
committerantlilja <liljaanton2001@gmail.com>2024-09-01 14:21:19 +0200
commit7cb87c14fe593b60b7034f12d2efd927309a0b96 (patch)
tree41267b10130d57a697f8c6971d16d3af8d3b9cd1 /src/codegen
parent629bd90e267691acac7625771bb47de4298aa8aa (diff)
downloadzig-7cb87c14fe593b60b7034f12d2efd927309a0b96.tar.gz
zig-7cb87c14fe593b60b7034f12d2efd927309a0b96.zip
LLVM: Remove cpp bindings for setPICLevel, setPIELevel and setCodeModel
Diffstat (limited to 'src/codegen')
-rw-r--r--src/codegen/llvm/bindings.zig9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/codegen/llvm/bindings.zig b/src/codegen/llvm/bindings.zig
index d21fc69ff3..a002dbcd8a 100644
--- a/src/codegen/llvm/bindings.zig
+++ b/src/codegen/llvm/bindings.zig
@@ -51,15 +51,6 @@ pub const Context = opaque {
pub const Module = opaque {
pub const dispose = LLVMDisposeModule;
extern fn LLVMDisposeModule(*Module) void;
-
- pub const setModulePICLevel = ZigLLVMSetModulePICLevel;
- extern fn ZigLLVMSetModulePICLevel(module: *Module, big: bool) void;
-
- pub const setModulePIELevel = ZigLLVMSetModulePIELevel;
- extern fn ZigLLVMSetModulePIELevel(module: *Module, large: bool) void;
-
- pub const setModuleCodeModel = ZigLLVMSetModuleCodeModel;
- extern fn ZigLLVMSetModuleCodeModel(module: *Module, code_model: CodeModel) void;
};
pub const disposeMessage = LLVMDisposeMessage;