Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(319)

Unified Diff: test/compiler-unittests/node-matchers.cc

Issue 470593002: Unify MachineType and RepType. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rename tXXX to kTypeXXX, rXXX to kRepXXX, and mXXX to kMachXXX to conform to style guide. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/compiler-unittests/node-matchers.cc
diff --git a/test/compiler-unittests/node-matchers.cc b/test/compiler-unittests/node-matchers.cc
index d580834113d3a987c661b0c0aa9247a6ba75e241..a9d37ed5178158b0f3672484b176d8227d83fe4f 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) &&
« src/compiler/machine-type.h ('K') | « test/compiler-unittests/instruction-selector-unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698