We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ad0042 commit cdd1c66Copy full SHA for cdd1c66
deps/v8/src/flags/flags.cc
@@ -539,8 +539,10 @@ uint32_t ComputeFlagListHash() {
539
// We want to be able to flip --profile-deserialization without
540
// causing the code cache to get invalidated by this hash.
541
if (flag.PointsTo(&v8_flags.profile_deserialization)) continue;
542
- // Skip v8_flags.random_seed to allow predictable code caching.
+ // Skip v8_flags.random_seed and v8_flags.predictable to allow predictable
543
+ // code caching.
544
if (flag.PointsTo(&v8_flags.random_seed)) continue;
545
+ if (flag.PointsTo(&v8_flags.predictable)) continue;
546
modified_args_as_string << flag;
547
}
548
std::string args(modified_args_as_string.str());
0 commit comments