Index: test/cctest/test-api.cc |
diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc |
index c72f6f6b405599e3170b93b21c7cae1768027d6c..c78a734a38cebb5b07f1339989b0067a9b461274 100644 |
--- a/test/cctest/test-api.cc |
+++ b/test/cctest/test-api.cc |
@@ -21828,7 +21828,6 @@ void TestStubCache(bool primary) { |
// Enforce recompilation of IC stubs that access megamorphic stub cache |
// to respect enabled native code counters and stub cache test flags. |
i::CodeStub::Major code_stub_keys[] = { |
- i::CodeStub::LoadIC, i::CodeStub::LoadICTrampoline, |
i::CodeStub::LoadICTF, i::CodeStub::LoadICTrampolineTF, |
i::CodeStub::KeyedLoadIC, i::CodeStub::KeyedLoadICTrampoline, |
i::CodeStub::StoreIC, i::CodeStub::StoreICTrampoline, |
@@ -21872,22 +21871,10 @@ void TestStubCache(bool primary) { |
} // namespace |
UNINITIALIZED_TEST(PrimaryStubCache) { |
- i::FLAG_tf_load_ic_stub = false; |
TestStubCache(true); |
} |
UNINITIALIZED_TEST(SecondaryStubCache) { |
- i::FLAG_tf_load_ic_stub = false; |
- TestStubCache(false); |
-} |
- |
-UNINITIALIZED_TEST(PrimaryStubCacheTF) { |
- i::FLAG_tf_load_ic_stub = true; |
- TestStubCache(true); |
-} |
- |
-UNINITIALIZED_TEST(SecondaryStubCacheTF) { |
- i::FLAG_tf_load_ic_stub = true; |
TestStubCache(false); |
} |