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

Unified Diff: src/compiler/js-inlining.cc

Issue 509343002: Better typing and type verification (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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/js-inlining.cc
diff --git a/src/compiler/js-inlining.cc b/src/compiler/js-inlining.cc
index 542b7e556978f81f7bfefa9d7e84dd4b4bdfe120..ac285c40028b2fb0abe5b5448b1834b2c7b930a3 100644
--- a/src/compiler/js-inlining.cc
+++ b/src/compiler/js-inlining.cc
@@ -311,9 +311,8 @@ void JSInliner::TryInlineCall(Node* node) {
Graph graph(info_->zone());
graph.SetNextNodeId(jsgraph_->graph()->NextNodeID());
- Typer typer(info_->zone());
CommonOperatorBuilder common(info_->zone());
- JSGraph jsgraph(&graph, &common, &typer);
+ JSGraph jsgraph(&graph, &common);
AstGraphBuilder graph_builder(&info, &jsgraph);
graph_builder.CreateGraph();

Powered by Google App Engine
This is Rietveld 408576698