| ... | ... | @@ -5390,7 +5390,7 @@ pub const Value = extern union { |
| 5390 | 5390 | /// have the same value, return that byte value, otherwise null. |
| 5391 | 5391 | pub fn hasRepeatedByteRepr(val: Value, ty: Type, mod: *Module, value_buffer: *Payload.U64) !?Value { |
| 5392 | 5392 | const target = mod.getTarget(); |
| 5393 | | const abi_size = ty.abiSize(target); |
| 5393 | const abi_size = std.math.cast(usize, ty.abiSize(target)) orelse return null; |
| 5394 | 5394 | assert(abi_size >= 1); |
| 5395 | 5395 | const byte_buffer = try mod.gpa.alloc(u8, abi_size); |
| 5396 | 5396 | defer mod.gpa.free(byte_buffer); |