Index: src/compiler/wasm-compiler.cc |
diff --git a/src/compiler/wasm-compiler.cc b/src/compiler/wasm-compiler.cc |
index 93d5a084b9a9ce7954d4101760c14426a12b892b..3844893f98a620dc966b8961e242707fe4292e52 100644 |
--- a/src/compiler/wasm-compiler.cc |
+++ b/src/compiler/wasm-compiler.cc |
@@ -2530,7 +2530,7 @@ Handle<JSFunction> CompileJSToWasmWrapper( |
typer.Run(roots); |
// Run generic and change lowering. |
- JSGenericLowering generic(true, &jsgraph); |
+ JSGenericLowering generic(&jsgraph); |
ChangeLowering changes(&jsgraph); |
GraphReducer graph_reducer(&zone, &graph, jsgraph.Dead()); |
graph_reducer.AddReducer(&changes); |
@@ -2620,7 +2620,7 @@ Handle<Code> CompileWasmToJSWrapper(Isolate* isolate, wasm::ModuleEnv* module, |
typer.Run(roots); |
// Run generic and change lowering. |
- JSGenericLowering generic(true, &jsgraph); |
+ JSGenericLowering generic(&jsgraph); |
ChangeLowering changes(&jsgraph); |
GraphReducer graph_reducer(&zone, &graph, jsgraph.Dead()); |
graph_reducer.AddReducer(&changes); |