Status: New
Owner: ----

New issue 2485 by [email protected]: BooleanValue() sub-optimal performance
http://code.google.com/p/v8/issues/detail?id=2485

While running some benchmarks I noticed that using:

args[0]->IsTrue() ? false : true;

is about 50% faster than:

!args[0]->BooleanValue();

Anyway we could get the performance to match?

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

Reply via email to