diff options
| author | Baitinq <[email protected]> | 2025-07-13 22:49:17 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-07-13 22:49:17 +0200 |
| commit | e91e0917f9894ec01de9145be73e6217dcdf8aa1 (patch) | |
| tree | 41d4e54635534aa2121500eaf11d90b738bf2209 /src/bootstrap/llvm.pry | |
| parent | Boostrap: Support struct field access (diff) | |
| download | pry-lang-e91e0917f9894ec01de9145be73e6217dcdf8aa1.tar.gz pry-lang-e91e0917f9894ec01de9145be73e6217dcdf8aa1.tar.bz2 pry-lang-e91e0917f9894ec01de9145be73e6217dcdf8aa1.zip | |
Boostrap: Support null
Diffstat (limited to 'src/bootstrap/llvm.pry')
| -rw-r--r-- | src/bootstrap/llvm.pry | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bootstrap/llvm.pry b/src/bootstrap/llvm.pry index 9b0e150..6ae7182 100644 --- a/src/bootstrap/llvm.pry +++ b/src/bootstrap/llvm.pry @@ -265,6 +265,7 @@ let LLVMBasicBlockRef = newtype *void; extern LLVMGetModuleDataLayout = (LLVMModuleRef) => LLVMTargetDataRef; extern LLVMConstInt = (LLVMTypeRef, i64, i64) => LLVMValueRef; +extern LLVMConstNull = (LLVMTypeRef) => LLVMValueRef; extern LLVMInt64Type = () => LLVMTypeRef; extern LLVMInt32Type = () => LLVMTypeRef; extern LLVMInt1Type = () => LLVMTypeRef; |