Index: test/unittests/compiler/common-operator-unittest.cc |
diff --git a/test/unittests/compiler/common-operator-unittest.cc b/test/unittests/compiler/common-operator-unittest.cc |
index fdf73c910f5866b465158753656dbe8d0faa8cee..5f2c26159483dae13e2b024895c40ebf9b17761a 100644 |
--- a/test/unittests/compiler/common-operator-unittest.cc |
+++ b/test/unittests/compiler/common-operator-unittest.cc |
@@ -49,8 +49,8 @@ const SharedOperator kSharedOperators[] = { |
SHARED(End, Operator::kFoldable, 0, 0, 1, 0, 0), |
SHARED(IfTrue, Operator::kFoldable, 0, 0, 1, 0, 1), |
SHARED(IfFalse, Operator::kFoldable, 0, 0, 1, 0, 1), |
- SHARED(Throw, Operator::kFoldable, 1, 0, 1, 0, 1), |
- SHARED(Return, Operator::kNoProperties, 1, 1, 1, 1, 1) |
+ SHARED(Throw, Operator::kFoldable, 1, 1, 1, 0, 1), |
+ SHARED(Return, Operator::kNoProperties, 1, 1, 1, 0, 1) |
#undef SHARED |
}; |
@@ -130,7 +130,7 @@ class CommonOperatorTest : public TestWithZone { |
}; |
-const int kArguments[] = {1, 5, 6, 42, 100, 10000, kMaxInt}; |
+const int kArguments[] = {1, 5, 6, 42, 100, 10000, 65000}; |
const float kFloatValues[] = {-std::numeric_limits<float>::infinity(), |