| Index: src/typing.cc
|
| diff --git a/src/typing.cc b/src/typing.cc
|
| index 434aff349055d179256a501d2b18b6a137afaade..f32f0eb393d7c6943146371aee5e2f5eca35391e 100644
|
| --- a/src/typing.cc
|
| +++ b/src/typing.cc
|
| @@ -511,6 +511,9 @@ void AstTyper::VisitCall(Call* expr) {
|
| expr->IsUsingCallFeedbackSlot(isolate()) &&
|
| oracle()->CallIsMonomorphic(expr->CallFeedbackSlot())) {
|
| expr->set_target(oracle()->GetCallTarget(expr->CallFeedbackSlot()));
|
| + Handle<AllocationSite> site =
|
| + oracle()->GetCallAllocationSite(expr->CallFeedbackSlot());
|
| + expr->set_allocation_site(site);
|
| }
|
|
|
| ZoneList<Expression*>* args = expr->arguments();
|
|
|