lgtm module one question. I love the linked list RPO trick - very clever!
https://codereview.chromium.org/696363002/diff/40001/src/compiler/scheduler.cc
File src/compiler/scheduler.cc (right):
https://codereview.chromium.org/696363002/diff/40001/src/compiler/scheduler.cc#newcode676
src/compiler/scheduler.cc:676: BlockList* insert_tail = insert_head ==
NULL ? NULL : insert_head->next;
The names are a bit confusing, I think. How about insert_after and
insert_before?
https://codereview.chromium.org/696363002/diff/40001/src/compiler/scheduler.cc#newcode721
src/compiler/scheduler.cc:721: insert_head->next = insert_tail->next;
Hmm, should not it be 'insert_head->next = insert_tail;' ?
https://codereview.chromium.org/696363002/
--
--
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.