diff options
| author | Baitinq <[email protected]> | 2025-07-07 23:50:06 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-07-07 23:50:06 +0200 |
| commit | 6818776dd5866ff07938cbdf8dbfdf6cea62fe34 (patch) | |
| tree | b5e4e515b202a30fb98f4857400584d72eff32f2 /src/bootstrap/llvm.pry | |
| parent | Boostrap: Codegen function definition arguments (diff) | |
| download | pry-lang-6818776dd5866ff07938cbdf8dbfdf6cea62fe34.tar.gz pry-lang-6818776dd5866ff07938cbdf8dbfdf6cea62fe34.tar.bz2 pry-lang-6818776dd5866ff07938cbdf8dbfdf6cea62fe34.zip | |
Bootstrap: Codegen: Support bool types
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 ba8aa8f..4183b99 100644 --- a/src/bootstrap/llvm.pry +++ b/src/bootstrap/llvm.pry @@ -262,6 +262,7 @@ let LLVMBasicBlockRef = newtype *void; extern LLVMConstInt = (LLVMTypeRef, i64, i64) => LLVMValueRef; extern LLVMInt64Type = () => LLVMTypeRef; +extern LLVMInt1Type = () => LLVMTypeRef; extern LLVMInt8Type = () => LLVMTypeRef; extern LLVMVoidType = () => LLVMTypeRef; |