| Index: runtime/vm/intermediate_language.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language.cc (revision 25280)
|
| +++ runtime/vm/intermediate_language.cc (working copy)
|
| @@ -149,6 +149,13 @@
|
| }
|
|
|
|
|
| +bool MathMinMaxInstr::AttributesEqual(Instruction* other) const {
|
| + MathMinMaxInstr* other_op = other->AsMathMinMax();
|
| + ASSERT(other_op != NULL);
|
| + return (op_kind() == other_op->op_kind()) &&
|
| + (result_cid() == other_op->result_cid());
|
| +}
|
| +
|
| bool BinarySmiOpInstr::AttributesEqual(Instruction* other) const {
|
| BinarySmiOpInstr* other_op = other->AsBinarySmiOp();
|
| ASSERT(other_op != NULL);
|
|
|