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

Unified Diff: test/mjsunit/regress/regress-575364.js

Issue 1564313003: [wasm] Fix validation error for missing return statement in asm.js module. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 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/typing-asm.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-575364.js
diff --git a/test/mjsunit/regress/regress-crbug-504787.js b/test/mjsunit/regress/regress-575364.js
similarity index 69%
copy from test/mjsunit/regress/regress-crbug-504787.js
copy to test/mjsunit/regress/regress-575364.js
index 66274bc6b9e314917b098349437c20cc1318888c..369a906a3d17e4f347e8307f48e0d790041eea6f 100644
--- a/test/mjsunit/regress/regress-crbug-504787.js
+++ b/test/mjsunit/regress/regress-575364.js
@@ -2,14 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// Flags: --noturbo-osr
+// Flags: --expose-wasm
function f() {
"use asm";
- function g() {
- function f() {};
- }
- return g;
-}
-f()();
+}
+assertThrows(function() { WASM.asmCompileRun(f.toString()); });
« no previous file with comments | « src/typing-asm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698