LGTM with nit.

https://codereview.chromium.org/15855015/diff/1/src/arguments.h
File src/arguments.h (right):

https://codereview.chromium.org/15855015/diff/1/src/arguments.h#newcode55
src/arguments.h:55: return
*(reinterpret_cast<Object**>(reinterpret_cast<intptr_t>(arguments_) -
The minus at the end of the line looks weird. I'd prefer to format as:

    return *(reinterpret_cast<Object**>(
        reinterpret_cast<intptr_t>(arguments_) - index * kPointerSize));

https://codereview.chromium.org/15855015/

--
--
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