| Index: lib/compiler/implementation/ssa/optimize.dart
|
| ===================================================================
|
| --- lib/compiler/implementation/ssa/optimize.dart (revision 7417)
|
| +++ lib/compiler/implementation/ssa/optimize.dart (working copy)
|
| @@ -591,7 +591,7 @@
|
| length.propagatedType = HType.INTEGER;
|
| node.block.addBefore(node, length);
|
|
|
| - HBoundsCheck check = new HBoundsCheck(length, index);
|
| + HBoundsCheck check = new HBoundsCheck(index, length);
|
| node.block.addBefore(node, check);
|
| return check;
|
| }
|
|
|