| ... | @@ -2476,15 +2476,9 @@ pub const Value = extern union { | ... | @@ -2476,15 +2476,9 @@ pub const Value = extern union { |
| 2476 | .bool_false, | 2476 | .bool_false, |
| 2477 | .bool_true, | 2477 | .bool_true, |
| 2478 | .the_only_possible_value, | 2478 | .the_only_possible_value, |
| | 2479 | .lazy_align, |
| 2479 | => return hashInt(ptr_val, hasher, target), | 2480 | => return hashInt(ptr_val, hasher, target), |
| 2480 | | 2481 | |
| 2481 | .lazy_align => { | | |
| 2482 | // Bit weird to have this here but this function is also called | | |
| 2483 | // on integers. | | |
| 2484 | const ty = ptr_val.castTag(.lazy_align).?.data; | | |
| 2485 | ty.hashWithHasher(hasher, target); | | |
| 2486 | }, | | |
| 2487 | | | |
| 2488 | else => unreachable, | 2482 | else => unreachable, |
| 2489 | } | 2483 | } |
| 2490 | } | 2484 | } |