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

Unified Diff: test/mjsunit/wasm/function-names.js

Issue 2345593003: [wasm] Master CL for Binary 0xC changes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix test failures and TSAN races. 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 | « test/mjsunit/wasm/frame-inspection.js ('k') | test/mjsunit/wasm/gc-frame.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/wasm/function-names.js
diff --git a/test/mjsunit/wasm/function-names.js b/test/mjsunit/wasm/function-names.js
index 15771d847073604ce457eef33d8ccd601e084561..94919b5e6c2758a25da69edb3f1e4d6125913869 100644
--- a/test/mjsunit/wasm/function-names.js
+++ b/test/mjsunit/wasm/function-names.js
@@ -19,11 +19,11 @@ var expected_names = ["exec_unreachable", "☠", null,
for (var func_name of func_names) {
last_func_index = builder.addFunction(func_name, kSig_v_v)
- .addBody([kExprCallFunction, kArity0, last_func_index]).index;
+ .addBody([kExprCallFunction, last_func_index]).index;
}
builder.addFunction("main", kSig_v_v)
- .addBody([kExprCallFunction, kArity0, last_func_index])
+ .addBody([kExprCallFunction, last_func_index])
.exportFunc();
var module = builder.instantiate();
« no previous file with comments | « test/mjsunit/wasm/frame-inspection.js ('k') | test/mjsunit/wasm/gc-frame.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698