Issue 102: if (A == undefined) is slow http://code.google.com/p/v8/issues/detail?id=102
Comment #3 by [EMAIL PROTECTED]: It is easy to fix. The current situation is that if (a == undefined) will go to the slowest path, comparing two objects. By adding a check against in EQUALS, it should be able to prevent the slowest path. I will send a patch shortly. -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
