Issue 137: division-> switch problem (it works correctly in previous chrome, in FF, Safari and IE) http://code.google.com/p/v8/issues/detail?id=137
Comment #3 by erik.corry: This is definitely a bug in V8's new fast integer switch code. A workaround until it gets fixed is to use base = Math.floor(strNum / 16); instead of the two lines base = strNum / 16; base = base - (rem / 16); -- 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 -~----------~----~----~----~------~----~------~--~---
