| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent eded29c commit 1f16df2
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -539,8 +539,10 @@ uint32_t ComputeFlagListHash() { | |||
| 539 | 539 | // We want to be able to flip --profile-deserialization without | |
| 540 | 540 | // causing the code cache to get invalidated by this hash. | |
| 541 | 541 | if (flag.PointsTo(&v8_flags.profile_deserialization)) continue; | |
| 542 | - // Skip v8_flags.random_seed to allow predictable code caching. | ||
| 542 | + // Skip v8_flags.random_seed and v8_flags.predictable to allow predictable | ||
| 543 | + // code caching. | ||
| 543 | 544 | if (flag.PointsTo(&v8_flags.random_seed)) continue; | |
| 545 | + if (flag.PointsTo(&v8_flags.predictable)) continue; | ||
| 544 | 546 | modified_args_as_string << flag; | |
| 545 | 547 | } | |
| 546 | 548 | std::string args(modified_args_as_string.str()); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments