| Index: runtime/vm/constant_propagator.cc
|
| diff --git a/runtime/vm/constant_propagator.cc b/runtime/vm/constant_propagator.cc
|
| index 35bab84f004618cd9382b4f49737a9d7f28caa45..29818e18b84761960977b4923b7949e1145842d4 100644
|
| --- a/runtime/vm/constant_propagator.cc
|
| +++ b/runtime/vm/constant_propagator.cc
|
| @@ -735,7 +735,7 @@ void ConstantPropagator::VisitBooleanNegate(BooleanNegateInstr* instr) {
|
|
|
|
|
| void ConstantPropagator::VisitInstanceOf(InstanceOfInstr* instr) {
|
| - const Definition* def = instr->value()->definition();
|
| + Definition* def = instr->value()->definition();
|
| const Object& value = def->constant_value();
|
| if (IsNonConstant(value)) {
|
| const AbstractType& checked_type = instr->type();
|
|
|