Index: src/compiler/common-operator-reducer.cc |
diff --git a/src/compiler/common-operator-reducer.cc b/src/compiler/common-operator-reducer.cc |
index 9a368162ef6e33158836a81eb5409d9117059cf6..00ebed2908fd72148ed4d58ccfab79d1303dcd85 100644 |
--- a/src/compiler/common-operator-reducer.cc |
+++ b/src/compiler/common-operator-reducer.cc |
@@ -36,7 +36,6 @@ Decision DecideCondition(Node* const cond) { |
} // namespace |
- |
CommonOperatorReducer::CommonOperatorReducer(Editor* editor, Graph* graph, |
CommonOperatorBuilder* common, |
MachineOperatorBuilder* machine) |
@@ -44,8 +43,9 @@ CommonOperatorReducer::CommonOperatorReducer(Editor* editor, Graph* graph, |
graph_(graph), |
common_(common), |
machine_(machine), |
- dead_(graph->NewNode(common->Dead())) {} |
- |
+ dead_(graph->NewNode(common->Dead())) { |
+ NodeProperties::SetType(dead_, Type::None()); |
+} |
Reduction CommonOperatorReducer::Reduce(Node* node) { |
switch (node->opcode()) { |