| Index: src/v8.cc
|
| diff --git a/src/v8.cc b/src/v8.cc
|
| index a415f26197b7f5cf9d001823c39021bef4d7703c..b49e0eb5f2789240bb4e3742e83c8d0eaca29a6e 100644
|
| --- a/src/v8.cc
|
| +++ b/src/v8.cc
|
| @@ -187,12 +187,9 @@ void V8::RunMicrotasks(Isolate* isolate) {
|
| void V8::InitializeOncePerProcessImpl() {
|
| FlagList::EnforceFlagImplications();
|
|
|
| - if (FLAG_predictable) {
|
| - if (FLAG_random_seed == 0) {
|
| - // Avoid random seeds in predictable mode.
|
| - FLAG_random_seed = 12347;
|
| - }
|
| - FLAG_hash_seed = 0;
|
| + if (FLAG_predictable && FLAG_random_seed == 0) {
|
| + // Avoid random seeds in predictable mode.
|
| + FLAG_random_seed = 12347;
|
| }
|
|
|
| if (FLAG_stress_compaction) {
|
|
|