| Index: src/ic.cc
|
| diff --git a/src/ic.cc b/src/ic.cc
|
| index 4fb55fc8abf15bf9291b46bed3cc85d71b352491..22367b7eaac25c870cbf8ed8fd1017b4d667fd25 100644
|
| --- a/src/ic.cc
|
| +++ b/src/ic.cc
|
| @@ -1434,7 +1434,8 @@ Handle<Code> StoreIC::CompileStoreHandler(LookupResult* lookup,
|
| Handle<Map> transition(lookup->GetTransitionTarget());
|
| PropertyDetails details = lookup->GetPropertyDetails();
|
|
|
| - if (details.type() != CALLBACKS && details.attributes() == NONE) {
|
| + if (details.type() != CALLBACKS && details.attributes() == NONE &&
|
| + holder->HasFastProperties()) {
|
| return compiler.CompileStoreTransition(transition, name);
|
| }
|
| } else {
|
|
|