Index: src/compiler/common-operator-reducer.cc |
diff --git a/src/compiler/common-operator-reducer.cc b/src/compiler/common-operator-reducer.cc |
index c1cd75ef7beb26698ea8ae61b1adbe2531de7041..02f99ced847de756451ff01eb5cf15da776e1f64 100644 |
--- a/src/compiler/common-operator-reducer.cc |
+++ b/src/compiler/common-operator-reducer.cc |
@@ -33,8 +33,7 @@ Decision DecideCondition(Node* const cond) { |
} |
case IrOpcode::kHeapConstant: { |
HeapObjectMatcher mcond(cond); |
- return mcond.Value().handle()->BooleanValue() ? Decision::kTrue |
- : Decision::kFalse; |
+ return mcond.Value()->BooleanValue() ? Decision::kTrue : Decision::kFalse; |
} |
default: |
return Decision::kUnknown; |