Index: test/unittests/compiler/typer-unittest.cc |
diff --git a/test/unittests/compiler/typer-unittest.cc b/test/unittests/compiler/typer-unittest.cc |
index 1e860ae1ad4a7fa41971b955eadc360dc48c1143..3ef436e5c86589cb698f438d62c475086bf2923c 100644 |
--- a/test/unittests/compiler/typer-unittest.cc |
+++ b/test/unittests/compiler/typer-unittest.cc |
@@ -373,20 +373,6 @@ TEST_BINARY_MONOTONICITY(Divide) |
TEST_BINARY_MONOTONICITY(Modulus) |
#undef TEST_BINARY_MONOTONICITY |
- |
-//------------------------------------------------------------------------------ |
-// Regression tests |
- |
- |
-TEST_F(TyperTest, TypeRegressInt32Constant) { |
- int values[] = {-5, 10}; |
- for (auto i : values) { |
- Node* c = graph()->NewNode(common()->Int32Constant(i)); |
- Type* type = NodeProperties::GetType(c); |
- EXPECT_TRUE(type->Is(NewRange(i, i))); |
- } |
-} |
- |
} // namespace compiler |
} // namespace internal |
} // namespace v8 |