From 713772ff2a8f49088c42a006c598fea2b59f20b8 Mon Sep 17 00:00:00 2001 From: Urjasvi Suthar Date: Mon, 13 Jul 2026 11:42:04 +0530 Subject: [PATCH] Fix i64 to i32 conversion for lb_sizeof(type) call in llvm_abi.cpp --- src/llvm_abi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/llvm_abi.cpp b/src/llvm_abi.cpp index 42196c8c4..1e3af35ba 100644 --- a/src/llvm_abi.cpp +++ b/src/llvm_abi.cpp @@ -1148,7 +1148,7 @@ namespace lbAbiArm64 { case LLVMPointerTypeKind: return true; case LLVMVectorTypeKind:{ - i32 sz = lb_sizeof(type); + i64 sz = lb_sizeof(type); return sz == 8 || sz == 16; } }