Index: src/compiler/pipeline.cc |
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc |
index 0921793f606f61845d9c75ddd206882244e103a1..9c0116478adddcd535cf7fb111e5b6d3e0503066 100644 |
--- a/src/compiler/pipeline.cc |
+++ b/src/compiler/pipeline.cc |
@@ -1469,10 +1469,7 @@ bool PipelineImpl::CreateGraph() { |
// Type the graph and keep the Typer running on newly created nodes within |
// this scope; the Typer is automatically unlinked from the Graph once we |
// leave this scope below. |
- Typer typer(isolate(), data->graph(), info()->is_deoptimization_enabled() |
- ? Typer::kDeoptimizationEnabled |
- : Typer::kNoFlags, |
- info()->dependencies()); |
+ Typer typer(isolate(), data->graph()); |
Run<TyperPhase>(&typer); |
RunPrintAndVerify("Typed"); |