| Index: sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart b/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
|
| index 88718e143fa8eda77f055a8013b33b8a02124012..290a3579d64550222d5dcdd5f3cb88558de86b54 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
|
| @@ -2541,7 +2541,7 @@ class HIs extends HInstruction {
|
| HInstruction getCheck(int index) => inputs[index + 1];
|
| int get checkCount => inputs.length - 1;
|
|
|
| - bool hasArgumentChecks() => inputs.length >= 1;
|
| + bool hasArgumentChecks() => inputs.length > 1;
|
|
|
| HType get guaranteedType => HType.BOOLEAN;
|
|
|
|
|