mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-16 19:02:23 -07:00
Make lb_create_enum_attribute ignore certain attributes (they are not properly supported by the actual LLVM C API)
This commit is contained in:
+4
-11
@@ -443,9 +443,7 @@ namespace lbAbi386 {
|
||||
case 4: return lb_arg_type_direct(return_type, LLVMIntTypeInContext(c, 32), nullptr, nullptr);
|
||||
case 8: return lb_arg_type_direct(return_type, LLVMIntTypeInContext(c, 64), nullptr, nullptr);
|
||||
}
|
||||
LLVMAttributeRef attr = nullptr;
|
||||
// TODO(bill): sret doesn't work correct for LLVM C API
|
||||
// attr = lb_create_enum_attribute(c, "sret", true);
|
||||
LLVMAttributeRef attr = lb_create_enum_attribute(c, "sret", true);
|
||||
return lb_arg_type_indirect(return_type, attr);
|
||||
}
|
||||
return non_struct(c, return_type, true);
|
||||
@@ -604,8 +602,7 @@ namespace lbAbiAmd64SysV {
|
||||
if (attribute_kind == Amd64TypeAttribute_ByVal) {
|
||||
attribute = lb_create_enum_attribute(c, "byval", true);
|
||||
} else if (attribute_kind == Amd64TypeAttribute_StructRect) {
|
||||
// TODO(bill): sret doesn't work correct for LLVM C API
|
||||
// attribute = lb_create_enum_attribute(c, "sret", true);
|
||||
attribute = lb_create_enum_attribute(c, "sret", true);
|
||||
}
|
||||
return lb_arg_type_indirect(type, attribute);
|
||||
} else {
|
||||
@@ -904,9 +901,7 @@ namespace lbAbiAmd64SysV {
|
||||
case 4: return lb_arg_type_direct(return_type, LLVMIntTypeInContext(c, 32), nullptr, nullptr);
|
||||
case 8: return lb_arg_type_direct(return_type, LLVMIntTypeInContext(c, 64), nullptr, nullptr);
|
||||
}
|
||||
LLVMAttributeRef attr = nullptr;
|
||||
// TODO(bill): sret doesn't work correct for LLVM C API
|
||||
// attr = lb_create_enum_attribute(c, "sret", true);
|
||||
LLVMAttributeRef attr = lb_create_enum_attribute(c, "sret", true);
|
||||
return lb_arg_type_indirect(return_type, attr);
|
||||
} else if (build_context.metrics.os == TargetOs_windows && lb_is_type_kind(return_type, LLVMIntegerTypeKind) && lb_sizeof(return_type) == 16) {
|
||||
return lb_arg_type_direct(return_type, LLVMIntTypeInContext(c, 128), nullptr, nullptr);
|
||||
@@ -1055,9 +1050,7 @@ namespace lbAbiArm64 {
|
||||
}
|
||||
return lb_arg_type_direct(type, cast_type, nullptr, nullptr);
|
||||
} else {
|
||||
LLVMAttributeRef attr = nullptr;
|
||||
// TODO(bill): sret doesn't work correct for LLVM C API
|
||||
// attr = lb_create_enum_attribute(c, "sret", true);
|
||||
LLVMAttributeRef attr = lb_create_enum_attribute(c, "sret", true);
|
||||
return lb_arg_type_indirect(type, attr);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user