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