mirror of
https://github.com/ziglang/zig.git
synced 2026-02-05 22:16:58 +00:00
improve panic message from previous commit
This commit is contained in:
parent
9c169f3cf7
commit
2005898689
@ -1072,9 +1072,10 @@ bool want_first_arg_sret(CodeGen *g, FnTypeId *fn_type_id) {
|
||||
if (abi_class == X64CABIClass_MEMORY) {
|
||||
return true;
|
||||
}
|
||||
zig_panic("TODO implement C ABI for x86_64 return types. '%s'", buf_ptr(&fn_type_id->return_type->name));
|
||||
zig_panic("TODO implement C ABI for x86_64 return types. type '%s'\nSee https://github.com/ziglang/zig/issues/1481",
|
||||
buf_ptr(&fn_type_id->return_type->name));
|
||||
}
|
||||
zig_panic("TODO implement C ABI for this architecture");
|
||||
zig_panic("TODO implement C ABI for this architecture. See https://github.com/ziglang/zig/issues/1481");
|
||||
}
|
||||
|
||||
ZigType *get_fn_type(CodeGen *g, FnTypeId *fn_type_id) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user