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

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

Issue 2309853002: [compiler] Bytecode preparation fails for asm.js modules. (Closed)
Patch Set: Created 4 years, 3 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.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-644111.js
diff --git a/test/message/syntactic-tail-call-in-binop-rhs.js b/test/mjsunit/regress/regress-crbug-644111.js
similarity index 57%
copy from test/message/syntactic-tail-call-in-binop-rhs.js
copy to test/mjsunit/regress/regress-crbug-644111.js
index a586cc84ee0fa2c6ab0b55879b2cc29042392721..2f77590850e34af74fcadd59a27cbcac3a1c9d21 100644
--- a/test/message/syntactic-tail-call-in-binop-rhs.js
+++ b/test/mjsunit/regress/regress-crbug-644111.js
@@ -2,13 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// Flags: --harmony-explicit-tailcalls
-"use strict";
+// Flags: --ignition-staging --turbo --validate-asm --always-opt
-function f() {
- return 1;
-}
-
-function g() {
- return b + continue f() ;
+function Module() {
+ "use asm";
+ return {};
}
+var m = Module();
« no previous file with comments | « src/compiler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698