mlugg 23062a5bed
Value: convert undefined values to 0xAA for bitwise operations
The operation `undefined & 0` ought to result in the value `0`, and likewise for
zeroing only some bits. `std/packed_int_array.zig` tests were failing because
this behavior was not implemented -- this issue was previously masked by faulty
bitcast logic which turned `undefined` values into `0xAA` on pointer loads.

Ideally, we would like to be able to track the undefined bits at comptime.
This is related to #19634.
2024-04-17 13:41:26 +01:00
..
2024-04-17 13:41:25 +01:00
2024-04-14 15:33:46 -04:00
2024-03-30 20:50:48 -04:00
2024-04-07 14:47:11 +02:00
2024-03-27 10:05:57 +00:00
2024-04-09 15:00:21 +02:00
2024-04-07 14:47:11 +02:00