| Index: src/ast.cc
|
| diff --git a/src/ast.cc b/src/ast.cc
|
| index 02c815cd77c7b6290e3e24d695edb221468dfa94..1b26941da9ead2303037ded133beeb6337746b6f 100644
|
| --- a/src/ast.cc
|
| +++ b/src/ast.cc
|
| @@ -413,12 +413,9 @@ void Property::RecordTypeFeedback(TypeFeedbackOracle* oracle,
|
| is_monomorphic_ = oracle->LoadIsMonomorphicNormal(this);
|
| receiver_types_.Clear();
|
| if (key()->IsPropertyName()) {
|
| - ArrayLengthStub array_stub(Code::LOAD_IC);
|
| FunctionPrototypeStub proto_stub(Code::LOAD_IC);
|
| StringLengthStub string_stub(Code::LOAD_IC, false);
|
| - if (oracle->LoadIsStub(this, &array_stub)) {
|
| - is_array_length_ = true;
|
| - } else if (oracle->LoadIsStub(this, &string_stub)) {
|
| + if (oracle->LoadIsStub(this, &string_stub)) {
|
| is_string_length_ = true;
|
| } else if (oracle->LoadIsStub(this, &proto_stub)) {
|
| is_function_prototype_ = true;
|
|
|