Index: test/cctest/compiler/test-schedule.cc |
diff --git a/test/cctest/compiler/test-schedule.cc b/test/cctest/compiler/test-schedule.cc |
index 34f19e87590bb1442755d35cedd61cb50a378996..cad686a825eabb7a2380aa3edb757dc972d9d759 100644 |
--- a/test/cctest/compiler/test-schedule.cc |
+++ b/test/cctest/compiler/test-schedule.cc |
@@ -126,20 +126,6 @@ TEST(TestScheduleAddThrow) { |
} |
-TEST(TestScheduleAddDeopt) { |
- HandleAndZoneScope scope; |
- Schedule schedule(scope.main_zone()); |
- Graph graph(scope.main_zone()); |
- Node* n0 = graph.NewNode(&dummy_operator); |
- BasicBlock* entry = schedule.start(); |
- schedule.AddDeoptimize(entry, n0); |
- |
- CHECK_EQ(0, entry->PredecessorCount()); |
- CHECK_EQ(1, entry->SuccessorCount()); |
- CHECK_EQ(schedule.end(), entry->SuccessorAt(0)); |
-} |
- |
- |
TEST(BuildMulNodeGraph) { |
HandleAndZoneScope scope; |
Schedule schedule(scope.main_zone()); |