diff --git a/src/codegen/aarch64/Select.zig b/src/codegen/aarch64/Select.zig index 520bad02743a1a0537226e7f40a6595046a3a42b..1e5f1cbb6e7eee1fc176bff68fa0511dd8ec1b7a 100644 --- a/src/codegen/aarch64/Select.zig +++ b/src/codegen/aarch64/Select.zig @@ -12176,9 +12176,7 @@ pub const CallAbiIterator = struct { const loaded_struct = ip.loadStructType(ty.toIntern()); switch (loaded_struct.layout) { .auto, .@"extern" => {}, - .@"packed" => continue :type_key .{ - .int_type = ip.indexToKey(loaded_struct.packed_backing_int_type).int_type, - }, + .@"packed" => continue :type_key ip.indexToKey(loaded_struct.packed_backing_int_type), } const size = wip_vi.size(isel); if (size <= 16 * 4) homogeneous_aggregate: { @@ -12300,9 +12298,7 @@ pub const CallAbiIterator = struct { } }, .opaque_type, .func_type => continue :type_key .{ .simple_type = .anyopaque }, - .enum_type => continue :type_key .{ - .int_type = ip.indexToKey(ip.loadEnumType(ty.toIntern()).int_tag_type).int_type, - }, + .enum_type => continue :type_key ip.indexToKey(ip.loadEnumType(ty.toIntern()).int_tag_type), .error_set_type, .inferred_error_set_type, => continue :type_key .{ .simple_type = .anyerror },