| Index: src/mips/full-codegen-mips.cc
 | 
| diff --git a/src/mips/full-codegen-mips.cc b/src/mips/full-codegen-mips.cc
 | 
| index 02a890a3565975cccdf6e4f71a285ceb9d54d593..8250ce0ebf916d24e712e058079b465fae0a633c 100644
 | 
| --- a/src/mips/full-codegen-mips.cc
 | 
| +++ b/src/mips/full-codegen-mips.cc
 | 
| @@ -139,8 +139,6 @@ void FullCodeGenerator::Generate() {
 | 
|    handler_table_ =
 | 
|        isolate()->factory()->NewFixedArray(function()->handler_count(), TENURED);
 | 
|  
 | 
| -  InitializeFeedbackVector();
 | 
| -
 | 
|    profiling_counter_ = isolate()->factory()->NewCell(
 | 
|        Handle<Smi>(Smi::FromInt(FLAG_interrupt_budget), isolate()));
 | 
|    SetFunctionPosition(function());
 | 
| @@ -1176,12 +1174,8 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) {
 | 
|    Label non_proxy;
 | 
|    __ bind(&fixed_array);
 | 
|  
 | 
| -  Handle<Object> feedback = Handle<Object>(
 | 
| -      Smi::FromInt(TypeFeedbackInfo::kForInFastCaseMarker),
 | 
| -      isolate());
 | 
| -  StoreFeedbackVectorSlot(slot, feedback);
 | 
|    __ li(a1, FeedbackVector());
 | 
| -  __ li(a2, Operand(Smi::FromInt(TypeFeedbackInfo::kForInSlowCaseMarker)));
 | 
| +  __ li(a2, Operand(TypeFeedbackInfo::MegamorphicSentinel(isolate())));
 | 
|    __ sw(a2, FieldMemOperand(a1, FixedArray::OffsetOfElementAt(slot)));
 | 
|  
 | 
|    __ li(a1, Operand(Smi::FromInt(1)));  // Smi indicates slow check
 | 
| @@ -2735,9 +2729,6 @@ void FullCodeGenerator::EmitCallWithStub(Call* expr) {
 | 
|    // Record source position for debugger.
 | 
|    SetSourcePosition(expr->position());
 | 
|  
 | 
| -  Handle<Object> uninitialized =
 | 
| -      TypeFeedbackInfo::UninitializedSentinel(isolate());
 | 
| -  StoreFeedbackVectorSlot(expr->CallFeedbackSlot(), uninitialized);
 | 
|    __ li(a2, FeedbackVector());
 | 
|    __ li(a3, Operand(Smi::FromInt(expr->CallFeedbackSlot())));
 | 
|  
 | 
| @@ -2922,9 +2913,6 @@ void FullCodeGenerator::VisitCallNew(CallNew* expr) {
 | 
|    __ lw(a1, MemOperand(sp, arg_count * kPointerSize));
 | 
|  
 | 
|    // Record call targets in unoptimized code.
 | 
| -  Handle<Object> uninitialized =
 | 
| -      TypeFeedbackInfo::UninitializedSentinel(isolate());
 | 
| -  StoreFeedbackVectorSlot(expr->CallNewFeedbackSlot(), uninitialized);
 | 
|    __ li(a2, FeedbackVector());
 | 
|    __ li(a3, Operand(Smi::FromInt(expr->CallNewFeedbackSlot())));
 | 
|  
 | 
| 
 |