Chromium Code Reviews| Index: src/lithium-allocator-inl.h |
| =================================================================== |
| --- src/lithium-allocator-inl.h (revision 13123) |
| +++ src/lithium-allocator-inl.h (working copy) |
| @@ -110,7 +110,9 @@ |
| void InputIterator::SkipUninteresting() { |
| - while (current_ < limit_ && instr_->InputAt(current_)->IsConstantOperand()) { |
| + while (current_ < limit_ && |
| + (instr_->InputAt(current_) == NULL || |
| + instr_->InputAt(current_)->IsConstantOperand())) { |
| ++current_; |
| } |
| } |