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

Unified Diff: test/mjsunit/regress/regress-crbug-545364.js

Issue 1413373002: [turbofan] We cannot unconditionally flatten cons strings in the JSGraph. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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/compiler/js-graph.cc ('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-crbug-545364.js
diff --git a/test/message/regress/regress-4266.js b/test/mjsunit/regress/regress-crbug-545364.js
similarity index 63%
copy from test/message/regress/regress-4266.js
copy to test/mjsunit/regress/regress-crbug-545364.js
index 552176bccf54e01f6c589ec420a06a0c4ba9e6c9..4fe99d0133d08440a90cef74fc59d5487438e172 100644
--- a/test/message/regress/regress-4266.js
+++ b/test/mjsunit/regress/regress-crbug-545364.js
@@ -3,9 +3,9 @@
// found in the LICENSE file.
(function() {
- try {
- [].foo();
- } catch (e) {
- throw e;
+ "use asm";
+ return function(x) {
+ for (var i = 0; i < 100000; ++i) {}
+ return x;
}
-})();
+})()(this + "i");
« no previous file with comments | « src/compiler/js-graph.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698