| Index: src/compiler/wasm-compiler.cc
|
| diff --git a/src/compiler/wasm-compiler.cc b/src/compiler/wasm-compiler.cc
|
| index 69699eacf48c8b25a78e37b0fe00b153f6286dc2..f26e22f5398d494180f3d10c2b41355f1505ce3d 100644
|
| --- a/src/compiler/wasm-compiler.cc
|
| +++ b/src/compiler/wasm-compiler.cc
|
| @@ -2966,8 +2966,9 @@ Handle<Code> CompileWasmFunction(wasm::ErrorThrower& thrower, Isolate* isolate,
|
| }
|
| CompilationInfo info(func_name, isolate, &zone, flags);
|
|
|
| - Handle<Code> code = Pipeline::GenerateWASMCode(&info, descriptor, &graph,
|
| - &source_position_table);
|
| + Handle<Code> code = Pipeline::GenerateWASMCode(
|
| + &info, descriptor, &graph, &source_position_table,
|
| + module_env->instance->js_object, function.func_index);
|
|
|
| buffer.Dispose();
|
|
|
|
|