File tree 1 file changed +4
-0
lines changed
src/tools/rust-analyzer/crates/hir-ty/src
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -197,6 +197,7 @@ fn layout_of_simd_ty(
197
197
align,
198
198
max_repr_align : None ,
199
199
unadjusted_abi_align : align. abi ,
200
+ randomization_seed : 0 ,
200
201
} ) )
201
202
}
202
203
@@ -313,6 +314,7 @@ pub fn layout_of_ty_query(
313
314
size,
314
315
max_repr_align : None ,
315
316
unadjusted_abi_align : element. align . abi ,
317
+ randomization_seed : 0 ,
316
318
}
317
319
}
318
320
TyKind :: Slice ( element) => {
@@ -326,6 +328,7 @@ pub fn layout_of_ty_query(
326
328
size : Size :: ZERO ,
327
329
max_repr_align : None ,
328
330
unadjusted_abi_align : element. align . abi ,
331
+ randomization_seed : 0 ,
329
332
}
330
333
}
331
334
TyKind :: Str => Layout {
@@ -337,6 +340,7 @@ pub fn layout_of_ty_query(
337
340
size : Size :: ZERO ,
338
341
max_repr_align : None ,
339
342
unadjusted_abi_align : dl. i8_align . abi ,
343
+ randomization_seed : 0 ,
340
344
} ,
341
345
// Potentially-wide pointers.
342
346
TyKind :: Ref ( _, _, pointee) | TyKind :: Raw ( _, pointee) => {
You can’t perform that action at this time.
0 commit comments