| Index: lib/compiler/implementation/ssa/optimize.dart
|
| ===================================================================
|
| --- lib/compiler/implementation/ssa/optimize.dart (revision 6731)
|
| +++ lib/compiler/implementation/ssa/optimize.dart (working copy)
|
| @@ -261,6 +261,7 @@
|
| // TODO(floitsch): cache interceptors.
|
| HStatic target = new HStatic(
|
| compiler.builder.interceptors.getTripleEqualsInterceptor());
|
| + node.block.addBefore(node, target);
|
| return new HIdentity(target, left, right);
|
| }
|
| }
|
| @@ -273,7 +274,7 @@
|
| // TODO(floitsch): cache interceptors.
|
| HStatic target = new HStatic(
|
| compiler.builder.interceptors.getEqualsNullInterceptor());
|
| - node.block.addBefore(node,target);
|
| + node.block.addBefore(node, target);
|
| return new HEquals(target, node.left, node.right);
|
| }
|
| }
|
|
|