Skip to content

Commit 297abc3

Browse files
committed
fix some references to no-longer-existing ReprOptions.layout_seed
1 parent 34aab62 commit 297abc3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler/rustc_abi/src/layout.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -958,7 +958,7 @@ fn univariant<
958958
#[cfg(feature = "randomize")]
959959
{
960960
use rand::{seq::SliceRandom, SeedableRng};
961-
// `ReprOptions.layout_seed` is a deterministic seed we can use to randomize field
961+
// `ReprOptions.field_shuffle_seed` is a deterministic seed we can use to randomize field
962962
// ordering.
963963
let mut rng =
964964
rand_xoshiro::Xoshiro128StarStar::seed_from_u64(repr.field_shuffle_seed);

compiler/rustc_abi/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ bitflags! {
4141
// Internal only for now. If true, don't reorder fields.
4242
const IS_LINEAR = 1 << 3;
4343
// If true, the type's layout can be randomized using
44-
// the seed stored in `ReprOptions.layout_seed`
44+
// the seed stored in `ReprOptions.field_shuffle_seed`
4545
const RANDOMIZE_LAYOUT = 1 << 4;
4646
// Any of these flags being set prevent field reordering optimisation.
4747
const IS_UNOPTIMISABLE = ReprFlags::IS_C.bits()

0 commit comments

Comments
 (0)