Index: src/compiler/pipeline.cc |
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc |
index cccc0b7bf9edcd3f6662ba4f38fd93757194828c..ceff8d660b48fb2021b43569c4ab98edf3660804 100644 |
--- a/src/compiler/pipeline.cc |
+++ b/src/compiler/pipeline.cc |
@@ -591,7 +591,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() |