Index: test/compiler-unittests/node-matchers.cc |
diff --git a/test/compiler-unittests/node-matchers.cc b/test/compiler-unittests/node-matchers.cc |
index 5d8fba99b267a57b66bbf64b68b067d446866e5f..afff34ab2aad530665460ed9083e6602230138c8 100644 |
--- a/test/compiler-unittests/node-matchers.cc |
+++ b/test/compiler-unittests/node-matchers.cc |
@@ -283,8 +283,9 @@ class IsStoreMatcher V8_FINAL : public NodeMatcher { |
virtual bool MatchAndExplain(Node* node, MatchResultListener* listener) const |
V8_OVERRIDE { |
return (NodeMatcher::MatchAndExplain(node, listener) && |
- PrintMatchAndExplain(OpParameter<StoreRepresentation>(node).rep, |
- "type", type_matcher_, listener) && |
+ PrintMatchAndExplain( |
+ OpParameter<StoreRepresentation>(node).machine_type, "type", |
+ type_matcher_, listener) && |
PrintMatchAndExplain( |
OpParameter<StoreRepresentation>(node).write_barrier_kind, |
"write barrier", write_barrier_matcher_, listener) && |