| Index: src/hydrogen-instructions.h
|
| diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h
|
| index d691cbe08d3ac95e896b4fa18018792f65ef10cc..ef424252be0eb47c26ebd0a34fc694bbe1f3c263 100644
|
| --- a/src/hydrogen-instructions.h
|
| +++ b/src/hydrogen-instructions.h
|
| @@ -4383,12 +4383,6 @@ class HCompareObjectEqAndBranch : public HTemplateControlInstruction<2, 2> {
|
| HBasicBlock* true_target = NULL,
|
| HBasicBlock* false_target = NULL)
|
| : known_successor_index_(kNoKnownSuccessorIndex) {
|
| - ASSERT(!left->IsConstant() ||
|
| - (!HConstant::cast(left)->HasInteger32Value() ||
|
| - HConstant::cast(left)->HasSmiValue()));
|
| - ASSERT(!right->IsConstant() ||
|
| - (!HConstant::cast(right)->HasInteger32Value() ||
|
| - HConstant::cast(right)->HasSmiValue()));
|
| SetOperandAt(0, left);
|
| SetOperandAt(1, right);
|
| SetSuccessorAt(0, true_target);
|
|
|