| Index: runtime/vm/intermediate_language.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language.cc (revision 20548)
|
| +++ runtime/vm/intermediate_language.cc (working copy)
|
| @@ -529,9 +529,10 @@
|
| current = next;
|
| current->set_definition(other);
|
| // Do not discard some useful inferred types.
|
| - if (current->Type() == this->Type()) {
|
| - current->SetReachingType(NULL);
|
| - }
|
| + // TODO(srdjan): Enable once checked mode issues investigated.
|
| + // if (current->Type() == this->Type()) {
|
| + // current->SetReachingType(NULL);
|
| + // }
|
| next = current->next_use();
|
| }
|
|
|
|
|