| Index: test/unittests/compiler/node-test-utils.cc
|
| diff --git a/test/unittests/compiler/node-test-utils.cc b/test/unittests/compiler/node-test-utils.cc
|
| index 5294928e4a2380ee97fc5c9342b33a74782bda3d..8e8ccf0be67938be3e21283d593c433bf3ee62ff 100644
|
| --- a/test/unittests/compiler/node-test-utils.cc
|
| +++ b/test/unittests/compiler/node-test-utils.cc
|
| @@ -1339,24 +1339,24 @@ STORE_MATCHER(UnalignedStore)
|
|
|
| class IsStackSlotMatcher final : public NodeMatcher {
|
| public:
|
| - explicit IsStackSlotMatcher(const Matcher<MachineRepresentation>& rep_matcher)
|
| - : NodeMatcher(IrOpcode::kStackSlot), rep_matcher_(rep_matcher) {}
|
| + explicit IsStackSlotMatcher(const Matcher<int>& size_matcher)
|
| + : NodeMatcher(IrOpcode::kStackSlot), size_matcher_(size_matcher) {}
|
|
|
| void DescribeTo(std::ostream* os) const final {
|
| NodeMatcher::DescribeTo(os);
|
| - *os << " whose rep (";
|
| - rep_matcher_.DescribeTo(os);
|
| + *os << " whose size (";
|
| + size_matcher_.DescribeTo(os);
|
| *os << ")";
|
| }
|
|
|
| bool MatchAndExplain(Node* node, MatchResultListener* listener) const final {
|
| return (NodeMatcher::MatchAndExplain(node, listener) &&
|
| - PrintMatchAndExplain(OpParameter<MachineRepresentation>(node),
|
| - "rep", rep_matcher_, listener));
|
| + PrintMatchAndExplain(OpParameter<int>(node), "size", size_matcher_,
|
| + listener));
|
| }
|
|
|
| private:
|
| - const Matcher<MachineRepresentation> rep_matcher_;
|
| + const Matcher<int> size_matcher_;
|
| };
|
|
|
| class IsToNumberMatcher final : public NodeMatcher {
|
| @@ -2175,8 +2175,8 @@ Matcher<Node*> IsUnalignedStore(
|
| control_matcher));
|
| }
|
|
|
| -Matcher<Node*> IsStackSlot(const Matcher<MachineRepresentation>& rep_matcher) {
|
| - return MakeMatcher(new IsStackSlotMatcher(rep_matcher));
|
| +Matcher<Node*> IsStackSlot(const Matcher<int>& size_matcher) {
|
| + return MakeMatcher(new IsStackSlotMatcher(size_matcher));
|
| }
|
|
|
| Matcher<Node*> IsToNumber(const Matcher<Node*>& base_matcher,
|
|
|