Index: src/compiler/common-operator-reducer.cc |
diff --git a/src/compiler/common-operator-reducer.cc b/src/compiler/common-operator-reducer.cc |
index 35f405bf3d82f4de9e1c9ef4ceb34e3b1cf4fb40..4bab1204787d1414c518112afbdab0c0c13c1073 100644 |
--- a/src/compiler/common-operator-reducer.cc |
+++ b/src/compiler/common-operator-reducer.cc |
@@ -31,7 +31,7 @@ Decision DecideCondition(Node* const cond) { |
return mcond.Value() ? Decision::kTrue : Decision::kFalse; |
} |
case IrOpcode::kHeapConstant: { |
- HeapObjectMatcher<HeapObject> mcond(cond); |
+ HeapObjectMatcher mcond(cond); |
return mcond.Value().handle()->BooleanValue() ? Decision::kTrue |
: Decision::kFalse; |
} |