Index: src/typing.cc |
diff --git a/src/typing.cc b/src/typing.cc |
index db5ca61a8e71b217dcbb8bce2d2894def51b20bd..c390956e19dcc227d80324a042f582d4f726b884 100644 |
--- a/src/typing.cc |
+++ b/src/typing.cc |
@@ -555,8 +555,7 @@ void AstTyper::VisitCall(Call* expr) { |
void AstTyper::VisitCallNew(CallNew* expr) { |
// Collect type feedback. |
FeedbackVectorSlot allocation_site_feedback_slot = |
- FLAG_pretenuring_call_new ? expr->AllocationSiteFeedbackSlot() |
- : expr->CallNewFeedbackSlot(); |
+ expr->CallNewFeedbackSlot(); |
expr->set_allocation_site( |
oracle()->GetCallNewAllocationSite(allocation_site_feedback_slot)); |
bool monomorphic = |