mirror of
https://github.com/odin-lang/Odin.git
synced 2026-07-15 12:20:26 +00:00
Fix i64 to i32 conversion for lb_sizeof(type) call in llvm_abi.cpp
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user