Index: test/compiler-unittests/graph-unittest.h |
diff --git a/test/compiler-unittests/graph-unittest.h b/test/compiler-unittests/graph-unittest.h |
index 46f67bb181b592de698333f711476901deb9b2f2..2a5ba731f6dd5a7515be3cf6dbd39b02c9fb401f 100644 |
--- a/test/compiler-unittests/graph-unittest.h |
+++ b/test/compiler-unittests/graph-unittest.h |
@@ -80,6 +80,8 @@ Matcher<Node*> IsWord32And(const Matcher<Node*>& lhs_matcher, |
const Matcher<Node*>& rhs_matcher); |
Matcher<Node*> IsWord32Sar(const Matcher<Node*>& lhs_matcher, |
const Matcher<Node*>& rhs_matcher); |
+Matcher<Node*> IsWord32Shl(const Matcher<Node*>& lhs_matcher, |
+ const Matcher<Node*>& rhs_matcher); |
Matcher<Node*> IsWord32Ror(const Matcher<Node*>& lhs_matcher, |
const Matcher<Node*>& rhs_matcher); |
Matcher<Node*> IsWord32Equal(const Matcher<Node*>& lhs_matcher, |
@@ -94,9 +96,12 @@ Matcher<Node*> IsWord64Equal(const Matcher<Node*>& lhs_matcher, |
const Matcher<Node*>& rhs_matcher); |
Matcher<Node*> IsInt32AddWithOverflow(const Matcher<Node*>& lhs_matcher, |
const Matcher<Node*>& rhs_matcher); |
+Matcher<Node*> IsUint32LessThanOrEqual(const Matcher<Node*>& lhs_matcher, |
+ const Matcher<Node*>& rhs_matcher); |
Matcher<Node*> IsChangeFloat64ToInt32(const Matcher<Node*>& input_matcher); |
Matcher<Node*> IsChangeInt32ToFloat64(const Matcher<Node*>& input_matcher); |
Matcher<Node*> IsChangeInt32ToInt64(const Matcher<Node*>& input_matcher); |
+Matcher<Node*> IsChangeUint32ToFloat64(const Matcher<Node*>& input_matcher); |
Matcher<Node*> IsChangeUint32ToUint64(const Matcher<Node*>& input_matcher); |
Matcher<Node*> IsTruncateFloat64ToInt32(const Matcher<Node*>& input_matcher); |
Matcher<Node*> IsTruncateInt64ToInt32(const Matcher<Node*>& input_matcher); |