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

Unified Diff: test/mjsunit/serialize-embedded-error.js

Issue 685393002: Do not embed array objects in unoptimized code. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 months 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 | « src/parser.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/serialize-embedded-error.js
diff --git a/test/mjsunit/regress/regress-dictionary-to-fast-arguments.js b/test/mjsunit/serialize-embedded-error.js
similarity index 56%
copy from test/mjsunit/regress/regress-dictionary-to-fast-arguments.js
copy to test/mjsunit/serialize-embedded-error.js
index f12679a663d336fa2fd321f0b8f9a48282fef307..473c931b305d54dd45c01b21b8edead15a5d3b19 100644
--- a/test/mjsunit/regress/regress-dictionary-to-fast-arguments.js
+++ b/test/mjsunit/serialize-embedded-error.js
@@ -2,10 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-function f(a, b) {
- for (var i = 10000; i > 0; i--) {
- arguments[i] = 0;
- }
-}
+// --serialize-toplevel --cache=code
-f(1.5, 2.5);
+var caught = false;
+try {
+ parseInt() = 0;
+} catch(e) {
+ caught = true;
+}
+assertTrue(caught);
« no previous file with comments | « src/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698