| Index: src/compiler/node-matchers.h
|
| diff --git a/src/compiler/node-matchers.h b/src/compiler/node-matchers.h
|
| index fc11a0a8cf03f17e80b7a6d45196badf4e9adc7c..1a29bb830e194c9d813b122eb2a0f12367a29f95 100644
|
| --- a/src/compiler/node-matchers.h
|
| +++ b/src/compiler/node-matchers.h
|
| @@ -28,6 +28,8 @@ struct NodeMatcher {
|
| }
|
| Node* InputAt(int index) const { return node()->InputAt(index); }
|
|
|
| + bool IsComparison() const;
|
| +
|
| #define DEFINE_IS_OPCODE(Opcode) \
|
| bool Is##Opcode() const { return opcode() == IrOpcode::k##Opcode; }
|
| ALL_OP_LIST(DEFINE_IS_OPCODE)
|
|
|