| ... | ... | @@ -1228,7 +1228,7 @@ pub const Key = union(enum) { |
| 1228 | 1228 | |
| 1229 | 1229 | .mut_decl => |x| Hash.hash( |
| 1230 | 1230 | seed2, |
| 1231 | | asBytes(&x.decl) ++ asBytes(&x.runtime_index), |
| 1231 | common ++ asBytes(&x.decl) ++ asBytes(&x.runtime_index), |
| 1232 | 1232 | ), |
| 1233 | 1233 | |
| 1234 | 1234 | .anon_decl, |
| ... | ... | @@ -1236,11 +1236,11 @@ pub const Key = union(enum) { |
| 1236 | 1236 | .eu_payload, |
| 1237 | 1237 | .opt_payload, |
| 1238 | 1238 | .comptime_field, |
| 1239 | | => |int| Hash.hash(seed2, asBytes(&int)), |
| 1239 | => |int| Hash.hash(seed2, common ++ asBytes(&int)), |
| 1240 | 1240 | |
| 1241 | 1241 | .elem, .field => |x| Hash.hash( |
| 1242 | 1242 | seed2, |
| 1243 | | asBytes(&x.base) ++ asBytes(&x.index), |
| 1243 | common ++ asBytes(&x.base) ++ asBytes(&x.index), |
| 1244 | 1244 | ), |
| 1245 | 1245 | }; |
| 1246 | 1246 | }, |