Commit c0bd56a5 authored by Benedikt Meurer's avatar Benedikt Meurer

[turbofan] Remove obsolete contains_js_nodes_ field.

R=svenpanne@chromium.org

Review URL: https://codereview.chromium.org/806653003

Cr-Commit-Position: refs/heads/master@{#25811}
parent 4fb4d75d
......@@ -70,7 +70,6 @@ class RepresentationSelector {
info_(zone->NewArray<NodeInfo>(count_)),
nodes_(zone),
replacements_(zone),
contains_js_nodes_(false),
phase_(PROPAGATE),
changer_(changer),
queue_(zone) {
......@@ -515,7 +514,6 @@ class RepresentationSelector {
#define DEFINE_JS_CASE(x) case IrOpcode::k##x:
JS_OP_LIST(DEFINE_JS_CASE)
#undef DEFINE_JS_CASE
contains_js_nodes_ = true;
VisitInputs(node);
return SetOutput(node, kRepTagged);
......@@ -1032,7 +1030,6 @@ class RepresentationSelector {
NodeInfo* info_; // node id -> usage information
NodeVector nodes_; // collected nodes
NodeVector replacements_; // replacements to be done after lowering
bool contains_js_nodes_; // {true} if a JS operator was seen
Phase phase_; // current phase of algorithm
RepresentationChanger* changer_; // for inserting representation changes
ZoneQueue<Node*> queue_; // queue for traversing the graph
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment