Index: src/compiler/wasm-compiler.cc |
diff --git a/src/compiler/wasm-compiler.cc b/src/compiler/wasm-compiler.cc |
index 24eba9cdee2a1bca8e1d0f054539ec5c7676fc4d..abd01301608f29e67aa2f75c5eec779a94efa3e6 100644 |
--- a/src/compiler/wasm-compiler.cc |
+++ b/src/compiler/wasm-compiler.cc |
@@ -2323,7 +2323,9 @@ Handle<JSFunction> CompileJSToWasmWrapper( |
Handle<Code> CompileWasmToJSWrapper(Isolate* isolate, wasm::ModuleEnv* module, |
Handle<JSFunction> function, |
- wasm::FunctionSig* sig, const char* name) { |
+ wasm::FunctionSig* sig, |
+ const char* module_cstr, |
+ const char* function_cstr) { |
//---------------------------------------------------------------------------- |
// Create the Graph |
//---------------------------------------------------------------------------- |
@@ -2391,7 +2393,7 @@ Handle<Code> CompileWasmToJSWrapper(Isolate* isolate, wasm::ModuleEnv* module, |
} |
RecordFunctionCompilation(Logger::FUNCTION_TAG, &info, "wasm-to-js", 0, |
- name); |
+ module_cstr); |
} |
return code; |
} |