[ABI FIX] Fix 128-bit ABI issues

This commit is contained in:
gingerBill
2024-10-04 11:16:33 +01:00
parent 0d834a2c2e
commit c305c9dd04
+2 -2
View File
@@ -622,9 +622,9 @@ namespace lbAbiAmd64SysV {
switch (kind) { switch (kind) {
case LLVMIntegerTypeKind: case LLVMIntegerTypeKind:
if (LLVM_VERSION_MAJOR >= 18 && sz >= 16) { if (LLVM_VERSION_MAJOR >= 18 && sz >= 16) {
return false; return true;
} }
return true; return false;
case LLVMHalfTypeKind: case LLVMHalfTypeKind:
case LLVMFloatTypeKind: case LLVMFloatTypeKind:
case LLVMDoubleTypeKind: case LLVMDoubleTypeKind: