about summary refs log tree commit diff
path: root/src/bootstrap/llvm.src
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2025-06-06 00:36:46 +0200
committerBaitinq <[email protected]>2025-06-06 00:37:15 +0200
commitd512b33da51e2a94690cf145d05479d6ec4860f6 (patch)
tree25718d478612ae98cc64943f2236ac6b7e873cf0 /src/bootstrap/llvm.src
parentBootstrap: Codegen: Create bindings for llvm types (diff)
downloadinterpreter-d512b33da51e2a94690cf145d05479d6ec4860f6.tar.gz
interpreter-d512b33da51e2a94690cf145d05479d6ec4860f6.tar.bz2
interpreter-d512b33da51e2a94690cf145d05479d6ec4860f6.zip
Feature: Typecheck on struct field assignment
Diffstat (limited to 'src/bootstrap/llvm.src')
-rw-r--r--src/bootstrap/llvm.src2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/llvm.src b/src/bootstrap/llvm.src
index 42f1a5b..4e78f5a 100644
--- a/src/bootstrap/llvm.src
+++ b/src/bootstrap/llvm.src
@@ -266,7 +266,7 @@ let LLVMTargetRef = newtype *void;
 
 extern LLVMModuleCreateWithName = (*i8) => LLVMModuleRef;
 extern LLVMGetGlobalContext = () => LLVMContextRef;
-extern LLVMCreateBuilder = () => LLVMBuilderRef; /* TODO: Create types */
+extern LLVMCreateBuilder = () => LLVMBuilderRef;
 extern LLVMDisposeModule = (LLVMModuleRef) => void;
 extern LLVMShutdown = () => void;
 extern LLVMDisposeBuilder = (LLVMBuilderRef) => void;