about summary refs log tree commit diff
path: root/src/bootstrap/llvm.pry
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2025-07-05 20:35:31 +0200
committerBaitinq <[email protected]>2025-07-05 20:35:31 +0200
commit2c15f6dfeaa13fbb35b3d9d1bb9fd1b179625a23 (patch)
tree1bffaf06b8a6fa67f8fe83bf013023b502d631b9 /src/bootstrap/llvm.pry
parentBoostrap: Support basic function calls (diff)
downloadpry-lang-2c15f6dfeaa13fbb35b3d9d1bb9fd1b179625a23.tar.gz
pry-lang-2c15f6dfeaa13fbb35b3d9d1bb9fd1b179625a23.tar.bz2
pry-lang-2c15f6dfeaa13fbb35b3d9d1bb9fd1b179625a23.zip
Boostrap: Codegen for strings
Diffstat (limited to 'src/bootstrap/llvm.pry')
-rw-r--r--src/bootstrap/llvm.pry1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bootstrap/llvm.pry b/src/bootstrap/llvm.pry
index 71dce09..67dff78 100644
--- a/src/bootstrap/llvm.pry
+++ b/src/bootstrap/llvm.pry
@@ -305,3 +305,4 @@ extern LLVMBuildRet = (LLVMBuilderRef, LLVMValueRef) => void;
 extern LLVMPointerType = (LLVMTypeRef, i64) => LLVMTypeRef;
 
 extern LLVMBuildCall2 = (LLVMBuilderRef, LLVMTypeRef, LLVMValueRef, *LLVMValueRef, i64, *i8) => LLVMValueRef;
+extern LLVMBuildGlobalStringPtr = (LLVMBuilderRef, *i8, *i8) => LLVMValueRef;