| Index: lib/compiler/implementation/ssa/codegen.dart
|
| ===================================================================
|
| --- lib/compiler/implementation/ssa/codegen.dart (revision 6688)
|
| +++ lib/compiler/implementation/ssa/codegen.dart (working copy)
|
| @@ -272,9 +272,8 @@
|
| String name = names[id];
|
| if (name !== null) return name;
|
|
|
| - if (instruction is HPhi) {
|
| - HPhi phi = instruction;
|
| - Element element = phi.element;
|
| + if (instruction.sourceElement !== null) {
|
| + Element element = instruction.sourceElement;
|
| String prefix;
|
| if (element !== null && !element.name.isEmpty()) {
|
| prefix = element.name.slowToString();
|
|
|