Revision: 3251 Author: [email protected] Date: Mon Nov 9 05:30:35 2009 Log: Revert change r3240-3241 because it causes ARM tests to fail.
(non-lazily compiled function literals) Review URL: http://codereview.chromium.org/376021 http://code.google.com/p/v8/source/detail?r=3251 Modified: /branches/bleeding_edge/src/compiler.cc ======================================= --- /branches/bleeding_edge/src/compiler.cc Mon Nov 9 05:22:38 2009 +++ /branches/bleeding_edge/src/compiler.cc Mon Nov 9 05:30:35 2009 @@ -765,7 +765,9 @@ void CodeGenSelector::VisitFunctionLiteral(FunctionLiteral* expr) { - // FunctionLiteral is supported. + if (!expr->AllowsLazyCompilation()) { + BAILOUT("FunctionLiteral does not allow lazy compilation"); + } } --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
