Index: src/compiler/pipeline.cc |
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc |
index 9a8b6e8b6c1cff6c3e22bf4c077b8c305d3169c1..27f00cb04fd56feaf8f02e59324f5dc0faa62495 100644 |
--- a/src/compiler/pipeline.cc |
+++ b/src/compiler/pipeline.cc |
@@ -590,7 +590,11 @@ struct TypedLoweringPhase { |
data->common()); |
LoadElimination load_elimination(&graph_reducer); |
JSBuiltinReducer builtin_reducer(&graph_reducer, data->jsgraph()); |
- JSTypedLowering typed_lowering(&graph_reducer, data->jsgraph(), temp_zone); |
+ JSTypedLowering typed_lowering(&graph_reducer, data->info()->dependencies(), |
+ data->info()->is_deoptimization_enabled() |
+ ? JSTypedLowering::kDeoptimizationEnabled |
+ : JSTypedLowering::kNoFlags, |
+ data->jsgraph(), temp_zone); |
JSIntrinsicLowering intrinsic_lowering( |
&graph_reducer, data->jsgraph(), |
data->info()->is_deoptimization_enabled() |