diff options
Diffstat (limited to 'deps/v8/test/mjsunit/regress/regress-crbug-571517.js')
-rw-r--r-- | deps/v8/test/mjsunit/regress/regress-crbug-571517.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/deps/v8/test/mjsunit/regress/regress-crbug-571517.js b/deps/v8/test/mjsunit/regress/regress-crbug-571517.js index 03bf76cb5e..ca7d7f73ba 100644 --- a/deps/v8/test/mjsunit/regress/regress-crbug-571517.js +++ b/deps/v8/test/mjsunit/regress/regress-crbug-571517.js @@ -11,7 +11,10 @@ function f(a) { var rec = new Receiver(); -var proto = rec.__proto__.__proto__; +// Formerly, this mutated rec.__proto__.__proto__, but +// the global object prototype chain is now immutable; +// not sure if this test now hits the original hazard case. +var proto = rec.__proto__; // Initialize prototype chain dependent IC (nonexistent load). assertEquals(undefined, f(rec)); |