Index: src/mips/lithium-mips.cc |
diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc |
index 861e65dfbb1bb66bc8f94fb7bcf333515cd56dfd..907c5b627da843a5e81f6f0bb6b0823e73c4e711 100644 |
--- a/src/mips/lithium-mips.cc |
+++ b/src/mips/lithium-mips.cc |
@@ -723,12 +723,7 @@ LInstruction* LChunkBuilder::DoShift(Token::Value op, |
// Left shifts can deoptimize if we shift by > 0 and the result cannot be |
// truncated to smi. |
if (instr->representation().IsSmi() && constant_value > 0) { |
- for (HUseIterator it(instr->uses()); !it.Done(); it.Advance()) { |
- if (!it.value()->CheckFlag(HValue::kTruncatingToSmi)) { |
- does_deopt = true; |
- break; |
- } |
- } |
+ does_deopt = !instr->CheckUsesForFlag(HValue::kTruncatingToSmi); |
} |
} else { |
right = UseRegisterAtStart(right_value); |
@@ -740,12 +735,7 @@ LInstruction* LChunkBuilder::DoShift(Token::Value op, |
if (FLAG_opt_safe_uint32_operations) { |
does_deopt = !instr->CheckFlag(HInstruction::kUint32); |
} else { |
- for (HUseIterator it(instr->uses()); !it.Done(); it.Advance()) { |
- if (!it.value()->CheckFlag(HValue::kTruncatingToInt32)) { |
- does_deopt = true; |
- break; |
- } |
- } |
+ does_deopt = !instr->CheckUsesForFlag(HValue::kTruncatingToInt32); |
} |
} |