| Index: sdk/lib/_internal/compiler/implementation/ssa/optimize.dart
|
| ===================================================================
|
| --- sdk/lib/_internal/compiler/implementation/ssa/optimize.dart (revision 23214)
|
| +++ sdk/lib/_internal/compiler/implementation/ssa/optimize.dart (working copy)
|
| @@ -488,6 +488,10 @@
|
| return graph.addConstantBool(false, constantSystem);
|
| }
|
|
|
| + if (left.isNull() && right.isNull()) {
|
| + return graph.addConstantBool(true, constantSystem);
|
| + }
|
| +
|
| if (left.isConstantBoolean() && right.isBoolean()) {
|
| HConstant constant = left;
|
| if (constant.constant.isTrue()) {
|
|
|