lgtm
http://codereview.chromium.org/9452022/diff/1/src/hydrogen-instructions.cc File src/hydrogen-instructions.cc (right): http://codereview.chromium.org/9452022/diff/1/src/hydrogen-instructions.cc#newcode412 src/hydrogen-instructions.cc:412: if (first != NULL && first->index() == i && first->value() == this) { Maybe reorder the condition to: if (first != NULL && first->value() == this && first->index() == i) http://codereview.chromium.org/9452022/ -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
