Index: src/ic/ia32/ic-ia32.cc |
diff --git a/src/ic/ia32/ic-ia32.cc b/src/ic/ia32/ic-ia32.cc |
index 7a6fe494f58b6c4d8372453274155e2e29c39273..d32e1c346bed04e208a3f033c9d4f5741fa5b242 100644 |
--- a/src/ic/ia32/ic-ia32.cc |
+++ b/src/ic/ia32/ic-ia32.cc |
@@ -519,10 +519,10 @@ void KeyedStoreIC::GenerateMegamorphic(MacroAssembler* masm, |
__ JumpIfSmi(receiver, &slow); |
// Get the map from the receiver. |
__ mov(edi, FieldOperand(receiver, HeapObject::kMapOffset)); |
- // Check that the receiver does not require access checks and is not observed. |
- // The generic stub does not perform map checks or handle observed objects. |
+ // Check that the receiver does not require access checks. |
+ // The generic stub does not perform map checks. |
__ test_b(FieldOperand(edi, Map::kBitFieldOffset), |
- Immediate(1 << Map::kIsAccessCheckNeeded | 1 << Map::kIsObserved)); |
+ Immediate(1 << Map::kIsAccessCheckNeeded)); |
__ j(not_zero, &slow); |
// Check that the key is a smi. |
__ JumpIfNotSmi(key, &maybe_name_key); |