https://codereview.chromium.org/367343002/diff/1/src/code-stubs-hydrogen.cc
File src/code-stubs-hydrogen.cc (right):

https://codereview.chromium.org/367343002/diff/1/src/code-stubs-hydrogen.cc#newcode1662
src/code-stubs-hydrogen.cc:1662: IfBuilder* lookup_if = new
IfBuilder(this);
Shouldn't you just Zone allocate this?

void* buffer = zone->New(sizeof(IfBuilder));
IfBuidler* lookup_if = new (buffer) IfBuilder(this)?

https://codereview.chromium.org/367343002/

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to