LGTM with a nit

https://codereview.chromium.org/12208011/diff/1008/src/deoptimizer.cc
File src/deoptimizer.cc (right):

https://codereview.chromium.org/12208011/diff/1008/src/deoptimizer.cc#newcode501
src/deoptimizer.cc:501: (FLAG_trace_stub_failures && frame_type ==
StackFrame::STUB);
I think a ternary is clearer here:

   return (frame_type == StackFrame::STUB)
       ? FLAG_trace_stub_failures
       : FLAG_trace_deopt;

https://codereview.chromium.org/12208011/

--
--
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/groups/opt_out.


Reply via email to