Chromium Code Reviews| Index: runtime/vm/intermediate_language.h |
| diff --git a/runtime/vm/intermediate_language.h b/runtime/vm/intermediate_language.h |
| index e57ebd1d4d7606b4b1efc98593748df2b9ae4bb5..001b9957bf401230d1b7d94b3f8644714d5e88be 100644 |
| --- a/runtime/vm/intermediate_language.h |
| +++ b/runtime/vm/intermediate_language.h |
| @@ -1110,7 +1110,7 @@ class PhiIterator : public ValueObject { |
| public: |
| explicit PhiIterator(JoinEntryInstr* join) |
| : phis_(join->phis()), index_(-1) { |
| - if (!Done()) Advance(); // Advance to the first smi. |
|
Vyacheslav Egorov (Google)
2013/02/20 16:05:37
nice!
|
| + if (!Done()) Advance(); // Advance to the first phi. |
| } |
| void Advance() { |
| @@ -1358,7 +1358,6 @@ class PhiInstr : public Definition { |
| // Phi is alive if it reaches a non-environment use. |
| bool is_alive() const { return is_alive_; } |
| void mark_alive() { is_alive_ = true; } |
| - void mark_dead() { is_alive_ = false; } |
| virtual Representation RequiredInputRepresentation(intptr_t i) const { |
| return representation_; |