Chromium Code Reviews| 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; |
|
ngeoffray
2012/12/10 07:07:54
Is that related to this CL? Or are you fixing a bu
karlklose
2012/12/11 08:40:05
This does not show as a bug, because the code that
|
| HType get guaranteedType => HType.BOOLEAN; |