| Index: runtime/vm/intermediate_language.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language.cc (revision 40293)
|
| +++ runtime/vm/intermediate_language.cc (working copy)
|
| @@ -1747,7 +1747,8 @@
|
| box_defn->value()->definition()->representation(),
|
| representation(),
|
| box_defn->value()->CopyWithType(),
|
| - representation() == kUnboxedInt32 ? deopt_id_ : Isolate::kNoDeoptId);
|
| + (representation() == kUnboxedInt32) ?
|
| + deopt_id_ : Isolate::kNoDeoptId);
|
| if ((representation() == kUnboxedInt32) && is_truncating()) {
|
| converter->mark_truncating();
|
| }
|
| @@ -1774,7 +1775,7 @@
|
| box_defn->from(),
|
| representation(),
|
| box_defn->value()->CopyWithType(),
|
| - to() == kUnboxedInt32 ? deopt_id_ : NULL);
|
| + (to() == kUnboxedInt32) ? deopt_id_ : Isolate::kNoDeoptId);
|
| if ((representation() == kUnboxedInt32) && is_truncating()) {
|
| converter->mark_truncating();
|
| }
|
|
|