Index: src/hydrogen-instructions.cc |
diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc |
index f81f5f0667f83289c946547758452e852e24ba5c..75c470d5eca6f873d1d6c41427776d074ee93092 100644 |
--- a/src/hydrogen-instructions.cc |
+++ b/src/hydrogen-instructions.cc |
@@ -608,6 +608,7 @@ void HInstruction::Verify() { |
HBasicBlock* cur_block = block(); |
for (int i = 0; i < OperandCount(); ++i) { |
HValue* other_operand = OperandAt(i); |
+ if (other_operand == NULL) continue; |
HBasicBlock* other_block = other_operand->block(); |
if (cur_block == other_block) { |
if (!other_operand->IsPhi()) { |