| Index: test/cctest/wasm/test-run-wasm.cc
|
| diff --git a/test/cctest/wasm/test-run-wasm.cc b/test/cctest/wasm/test-run-wasm.cc
|
| index a682576c21d66dcac08adaab7eaededc25eabdb0..36a211e83f9317e6b1d4d4f65d6c8be68b6a6636 100644
|
| --- a/test/cctest/wasm/test-run-wasm.cc
|
| +++ b/test/cctest/wasm/test-run-wasm.cc
|
| @@ -1727,14 +1727,14 @@ static void TestBuildGraphForSimpleExpression(WasmOpcode opcode) {
|
|
|
| if (sig->parameter_count() == 1) {
|
| byte code[] = {WASM_NO_LOCALS, static_cast<byte>(opcode), kExprGetLocal, 0};
|
| - TestBuildingGraph(&zone, &jsgraph, nullptr, sig, code,
|
| + TestBuildingGraph(&zone, &jsgraph, nullptr, sig, nullptr, code,
|
| code + arraysize(code));
|
| } else {
|
| CHECK_EQ(2, sig->parameter_count());
|
| byte code[] = {WASM_NO_LOCALS, static_cast<byte>(opcode),
|
| kExprGetLocal, 0,
|
| kExprGetLocal, 1};
|
| - TestBuildingGraph(&zone, &jsgraph, nullptr, sig, code,
|
| + TestBuildingGraph(&zone, &jsgraph, nullptr, sig, nullptr, code,
|
| code + arraysize(code));
|
| }
|
| }
|
|
|