Index: src/compiler/pipeline.cc |
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc |
index 0d1619a80087f15d9a72f5f8ed2433fd00ac75eb..6f85651a2e93e8882b178d03a2e865d965870b2d 100644 |
--- a/src/compiler/pipeline.cc |
+++ b/src/compiler/pipeline.cc |
@@ -1055,8 +1055,7 @@ Handle<Code> Pipeline::GenerateCode() { |
SmartPointer<Typer> typer; |
if (info()->is_typing_enabled()) { |
// Type the graph. |
- typer.Reset(new Typer(isolate(), data.graph(), info()->function_type(), |
- info()->context())); |
+ typer.Reset(new Typer(isolate(), data.graph(), info()->function_type())); |
Run<TyperPhase>(typer.get()); |
RunPrintAndVerify("Typed"); |
} |