mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-28 18:30:06 +00:00
[ABI FIX] Fix 128-bit ABI issues
This commit is contained in:
+2
-2
@@ -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:
|
||||||
|
|||||||
Reference in New Issue
Block a user