| Index: test/cctest/wasm/test-run-wasm-module.cc
|
| diff --git a/test/cctest/wasm/test-run-wasm-module.cc b/test/cctest/wasm/test-run-wasm-module.cc
|
| index dd78e997480b8153098bcc70a6d1071c9cf70e41..79406165a634bcceca78bd4e3aa4e34989da8880 100644
|
| --- a/test/cctest/wasm/test-run-wasm-module.cc
|
| +++ b/test/cctest/wasm/test-run-wasm-module.cc
|
| @@ -42,14 +42,16 @@ TEST(Run_WasmModule_CallAdd_rev) {
|
| 2, kLocalI32, kLocalI32, kLocalI32, // int,int -> int
|
| // func#0 (main) ----------------------------------
|
| kDeclFunctions, 2, kDeclFunctionExport, 0, 0, // sig index
|
| - 6, 0, // body size
|
| + 7, 0, // body size
|
| + 0, // locals
|
| kExprCallFunction, 1, // --
|
| kExprI8Const, 77, // --
|
| kExprI8Const, 22, // --
|
| // func#1 -----------------------------------------
|
| 0, // no name, not exported
|
| 1, 0, // sig index
|
| - 5, 0, // body size
|
| + 6, 0, // body size
|
| + 0, // locals
|
| kExprI32Add, // --
|
| kExprGetLocal, 0, // --
|
| kExprGetLocal, 1, // --
|
|
|