deps: update v8 to 4.3.61.21
[platform/upstream/nodejs.git] / deps / v8 / src / compiler / node-matchers.cc
1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "src/compiler/node-matchers.h"
6
7 namespace v8 {
8 namespace internal {
9 namespace compiler {
10
11 bool NodeMatcher::IsComparison() const {
12   return IrOpcode::IsComparisonOpcode(opcode());
13 }
14
15 }  // namespace compiler
16 }  // namespace internal
17 }  // namespace v8