Index: src/x87/lithium-x87.h |
diff --git a/src/x87/lithium-x87.h b/src/x87/lithium-x87.h |
index 1cd30462e3b85e6313798378cb4d25d0b1f022c4..7a373fece16aa02c4f58d859721f88c5df239e88 100644 |
--- a/src/x87/lithium-x87.h |
+++ b/src/x87/lithium-x87.h |
@@ -176,7 +176,7 @@ class LCodeGen; |
return mnemonic; \ |
} \ |
static L##type* cast(LInstruction* instr) { \ |
- ASSERT(instr->Is##type()); \ |
+ DCHECK(instr->Is##type()); \ |
return reinterpret_cast<L##type*>(instr); \ |
} |
@@ -339,7 +339,7 @@ class LGap : public LTemplateInstruction<0, 0, 0> { |
virtual bool IsGap() const V8_FINAL V8_OVERRIDE { return true; } |
virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE; |
static LGap* cast(LInstruction* instr) { |
- ASSERT(instr->IsGap()); |
+ DCHECK(instr->IsGap()); |
return reinterpret_cast<LGap*>(instr); |
} |
@@ -1589,7 +1589,7 @@ class LReturn V8_FINAL : public LTemplateInstruction<0, 3, 0> { |
return parameter_count()->IsConstantOperand(); |
} |
LConstantOperand* constant_parameter_count() { |
- ASSERT(has_constant_parameter_count()); |
+ DCHECK(has_constant_parameter_count()); |
return LConstantOperand::cast(parameter_count()); |
} |
LOperand* parameter_count() { return inputs_[2]; } |
@@ -1910,7 +1910,7 @@ class LCallWithDescriptor V8_FINAL : public LTemplateResultInstruction<1> { |
const ZoneList<LOperand*>& operands, |
Zone* zone) |
: inputs_(descriptor->GetRegisterParameterCount() + 1, zone) { |
- ASSERT(descriptor->GetRegisterParameterCount() + 1 == operands.length()); |
+ DCHECK(descriptor->GetRegisterParameterCount() + 1 == operands.length()); |
inputs_.AddAll(operands, zone); |
} |