mirror of
https://github.com/ziglang/zig.git
synced 2026-02-21 16:54:52 +00:00
x86 codegen: handle spilled tuples
This commit is contained in:
parent
37985613c7
commit
3da6a19011
@ -187027,6 +187027,10 @@ const Temp = struct {
|
||||
else => .u64,
|
||||
};
|
||||
},
|
||||
.tuple_type => |tuple_type| {
|
||||
assert(tuple_type.types.len == src_regs.len);
|
||||
break :part_ty .fromInterned(tuple_type.types.get(ip)[part_index]);
|
||||
},
|
||||
};
|
||||
const part_size: u31 = @intCast(part_ty.abiSize(zcu));
|
||||
const src_rc = src_reg.class();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user