| 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 a688ec1bc6fbaf4129d3efcae0ea429ee5306156..3983c8f485954b0765bc3ce4633bee7d6cae0f1c 100644
|
| --- a/test/unittests/compiler/node-test-utils.h
|
| +++ b/test/unittests/compiler/node-test-utils.h
|
| @@ -301,12 +301,22 @@ Matcher<Node*> IsLoad(const Matcher<LoadRepresentation>& rep_matcher,
|
| const Matcher<Node*>& index_matcher,
|
| const Matcher<Node*>& effect_matcher,
|
| const Matcher<Node*>& control_matcher);
|
| +Matcher<Node*> IsUnalignedLoad(
|
| + const Matcher<UnalignedLoadRepresentation>& rep_matcher,
|
| + const Matcher<Node*>& base_matcher, const Matcher<Node*>& index_matcher,
|
| + const Matcher<Node*>& effect_matcher,
|
| + const Matcher<Node*>& control_matcher);
|
| Matcher<Node*> IsStore(const Matcher<StoreRepresentation>& rep_matcher,
|
| const Matcher<Node*>& base_matcher,
|
| const Matcher<Node*>& index_matcher,
|
| const Matcher<Node*>& value_matcher,
|
| const Matcher<Node*>& effect_matcher,
|
| const Matcher<Node*>& control_matcher);
|
| +Matcher<Node*> IsUnalignedStore(
|
| + const Matcher<UnalignedStoreRepresentation>& rep_matcher,
|
| + const Matcher<Node*>& base_matcher, const Matcher<Node*>& index_matcher,
|
| + const Matcher<Node*>& value_matcher, const Matcher<Node*>& effect_matcher,
|
| + const Matcher<Node*>& control_matcher);
|
| Matcher<Node*> IsStackSlot(const Matcher<MachineRepresentation>& rep_matcher);
|
| Matcher<Node*> IsWord32And(const Matcher<Node*>& lhs_matcher,
|
| const Matcher<Node*>& rhs_matcher);
|
|
|