| ... | @@ -1357,9 +1357,9 @@ pub const Value = extern union { | ... | @@ -1357,9 +1357,9 @@ pub const Value = extern union { |
| 1357 | else => unreachable, | 1357 | else => unreachable, |
| 1358 | }, | 1358 | }, |
| 1359 | .Vector => { | 1359 | .Vector => { |
| 1360 | const len = ty.arrayLen(); | | |
| 1361 | const elem_ty = ty.childType(); | 1360 | const elem_ty = ty.childType(); |
| 1362 | const elem_bit_size = @intCast(u16, elem_ty.bitSize(target)); | 1361 | const elem_bit_size = @intCast(u16, elem_ty.bitSize(target)); |
| | 1362 | const len = @intCast(usize, ty.arrayLen()); |
| 1363 | | 1363 | |
| 1364 | var bits: u16 = 0; | 1364 | var bits: u16 = 0; |
| 1365 | var elem_i: usize = 0; | 1365 | var elem_i: usize = 0; |