Index: src/arm/full-codegen-arm.cc |
diff --git a/src/arm/full-codegen-arm.cc b/src/arm/full-codegen-arm.cc |
index ee06bbea7704af490a5fb45d708613f7ea0fa17a..74d3009a5ada33d1e5f8194cd15ef6222c8bd8c4 100644 |
--- a/src/arm/full-codegen-arm.cc |
+++ b/src/arm/full-codegen-arm.cc |
@@ -2352,16 +2352,6 @@ void FullCodeGenerator::VisitCall(Call* expr) { |
} |
} |
} else { |
- // Call to some other expression. If the expression is an anonymous |
- // function literal not called in a loop, mark it as one that should |
- // also use the fast code generator. |
- FunctionLiteral* lit = fun->AsFunctionLiteral(); |
- if (lit != NULL && |
- lit->name()->Equals(isolate()->heap()->empty_string()) && |
- loop_depth() == 0) { |
- lit->set_try_full_codegen(true); |
- } |
- |
{ PreservePositionScope scope(masm()->positions_recorder()); |
VisitForStackValue(fun); |
} |