Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(539)

Unified Diff: src/compiler/pipeline.cc

Issue 1197703002: Use big-boy Types to annotate interface descriptor parameters (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Review feedback Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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");
}

Powered by Google App Engine
This is Rietveld 408576698