| Index: src/type-info.cc
|
| diff --git a/src/type-info.cc b/src/type-info.cc
|
| index 07c772e980d0c295668c65470b993967f7fbcfbd..cf3950f4f01b2af65111bb10c5e02b93a33bc796 100644
|
| --- a/src/type-info.cc
|
| +++ b/src/type-info.cc
|
| @@ -109,8 +109,9 @@ bool TypeFeedbackOracle::CallNewIsMonomorphic(int slot) {
|
| byte TypeFeedbackOracle::ForInType(int feedback_vector_slot) {
|
| Handle<Object> value = GetInfo(feedback_vector_slot);
|
| return value.is_identical_to(
|
| - TypeFeedbackInfo::UninitializedSentinel(isolate()))
|
| - ? ForInStatement::FAST_FOR_IN : ForInStatement::SLOW_FOR_IN;
|
| + TypeFeedbackVector::UninitializedSentinel(isolate()))
|
| + ? ForInStatement::FAST_FOR_IN
|
| + : ForInStatement::SLOW_FOR_IN;
|
| }
|
|
|
|
|
|
|