Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(516)

Unified Diff: test/mjsunit/regress/regress-osr-in-literal.js

Issue 1455953002: [turbofan] Fix deoptimization from array literal spread. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Skip ignition. Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/regress/regress-deopt-in-array-literal-spread.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-osr-in-literal.js
diff --git a/test/mjsunit/regress/regress-osr-in-literal.js b/test/mjsunit/regress/regress-osr-in-literal.js
index cdb50f1af9a527a28a256f61dcfb963a4b508778..7553b9c725bab07f4160cc6eb06e897e12d67249 100644
--- a/test/mjsunit/regress/regress-osr-in-literal.js
+++ b/test/mjsunit/regress/regress-osr-in-literal.js
@@ -17,6 +17,7 @@ var testCases = [
{ s:"{ [do { _OSR_ 'b' }]: 3 }", r:{ b:3 } },
{ s:"{ [do { _OSR_ 'b' }]: 3, c: 4 }", r:{ b:3, c:4 } },
{ s:"{ [do { _OSR_ 'b' }]: 3, __proto__:p }", r:{ b:3, __proto__:p } },
+ { s:"{ get [do { _OSR_ 'c' }]() { return 4; } }", r:{ c:4 } },
{ s:"class { [do { _OSR_ 'f' }]() {} }" },
{ s:"class { [do { _OSR_ 'f' }]() {}; g() {} }" },
];
« no previous file with comments | « test/mjsunit/regress/regress-deopt-in-array-literal-spread.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698