| Index: lib/compiler/implementation/ssa/nodes.dart
|
| diff --git a/lib/compiler/implementation/ssa/nodes.dart b/lib/compiler/implementation/ssa/nodes.dart
|
| index c5525630131108cd5bea3fcf5d88119f22eadc0d..1b14d315d39a57808086698d9f343eeb61543cdf 100644
|
| --- a/lib/compiler/implementation/ssa/nodes.dart
|
| +++ b/lib/compiler/implementation/ssa/nodes.dart
|
| @@ -1576,7 +1576,8 @@ class HShiftLeft extends HBinaryBitOp {
|
| bool get builtin() {
|
| if (!left.isInteger() || !right.isConstantInteger()) return false;
|
| HConstant rightConstant = right;
|
| - int count = rightConstant.constant.value;
|
| + IntConstant intConstant = rightConstant.constant;
|
| + int count = intConstant.value;
|
| return count >= 0 && count <= 31;
|
| }
|
|
|
|
|