Status: New
Owner: ----

New issue 2434 by [email protected]: Don't bailout on arguments slice
http://code.google.com/p/v8/issues/detail?id=2434

The current pattern is extremely common on JS today

function f(x,/* ... rest *) {
  var rest = Array.prototype.slice.call(arguments, 1);
  ...
}

This causes deopt due to arguments not being used in the "right" way.

We should fix this.

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to