| Index: test/unittests/compiler/node-test-utils.h
|
| diff --git a/test/unittests/compiler/node-test-utils.h b/test/unittests/compiler/node-test-utils.h
|
| index 7c306a2c9d963b13565d6b6eb2bab58f24895b58..52e4cfbf5a3ea610cd7380cb03b732a158edc14e 100644
|
| --- a/test/unittests/compiler/node-test-utils.h
|
| +++ b/test/unittests/compiler/node-test-utils.h
|
| @@ -203,12 +203,18 @@ Matcher<Node*> IsChangeUint32ToUint64(const Matcher<Node*>& input_matcher);
|
| Matcher<Node*> IsTruncateFloat64ToFloat32(const Matcher<Node*>& input_matcher);
|
| Matcher<Node*> IsTruncateFloat64ToInt32(const Matcher<Node*>& input_matcher);
|
| Matcher<Node*> IsTruncateInt64ToInt32(const Matcher<Node*>& input_matcher);
|
| +Matcher<Node*> IsFloat32Max(const Matcher<Node*>& lhs_matcher,
|
| + const Matcher<Node*>& rhs_matcher);
|
| +Matcher<Node*> IsFloat32Min(const Matcher<Node*>& lhs_matcher,
|
| + const Matcher<Node*>& rhs_matcher);
|
| +Matcher<Node*> IsFloat32Abs(const Matcher<Node*>& input_matcher);
|
| Matcher<Node*> IsFloat64Max(const Matcher<Node*>& lhs_matcher,
|
| const Matcher<Node*>& rhs_matcher);
|
| Matcher<Node*> IsFloat64Min(const Matcher<Node*>& lhs_matcher,
|
| const Matcher<Node*>& rhs_matcher);
|
| Matcher<Node*> IsFloat64Sub(const Matcher<Node*>& lhs_matcher,
|
| const Matcher<Node*>& rhs_matcher);
|
| +Matcher<Node*> IsFloat64Abs(const Matcher<Node*>& input_matcher);
|
| Matcher<Node*> IsFloat64Sqrt(const Matcher<Node*>& input_matcher);
|
| Matcher<Node*> IsFloat64RoundDown(const Matcher<Node*>& input_matcher);
|
| Matcher<Node*> IsFloat64RoundTruncate(const Matcher<Node*>& input_matcher);
|
|
|