Index: test/cctest/test-compiler.cc |
diff --git a/test/cctest/test-compiler.cc b/test/cctest/test-compiler.cc |
index 4de9aaef200b5e9456d99a4d37c87171a9d20b76..10a5c9ade32135f0d6a857a580c4844c66ffd866 100644 |
--- a/test/cctest/test-compiler.cc |
+++ b/test/cctest/test-compiler.cc |
@@ -310,10 +310,10 @@ TEST(FeedbackVectorPreservedAcrossRecompiles) { |
// Verify that we gathered feedback. |
int expected_slots = 0; |
- int expected_ic_slots = 2; |
+ int expected_ic_slots = 1; |
CHECK_EQ(expected_slots, feedback_vector->Slots()); |
CHECK_EQ(expected_ic_slots, feedback_vector->ICSlots()); |
- FeedbackVectorICSlot slot_for_a(1); |
+ FeedbackVectorICSlot slot_for_a(0); |
Object* object = feedback_vector->Get(slot_for_a); |
CHECK(object->IsWeakCell() && |
WeakCell::cast(object)->value()->IsJSFunction()); |
@@ -362,7 +362,7 @@ TEST(FeedbackVectorUnaffectedByScopeChanges) { |
// Now a feedback vector is allocated. |
CHECK(f->shared()->is_compiled()); |
int expected_slots = 0; |
- int expected_ic_slots = 3; |
+ int expected_ic_slots = 2; |
CHECK_EQ(expected_slots, f->shared()->feedback_vector()->Slots()); |
CHECK_EQ(expected_ic_slots, f->shared()->feedback_vector()->ICSlots()); |
} |