Skip to content

Commit 762f049

Browse files
committed
[dart2js] new-rti: fix merge problem
CQ didn't re-run the tests. TBR=fishythefish@google.com Change-Id: I6b8a2d51dc806510f241a95e98e2f1000ef3d79c Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/112820 Reviewed-by: Stephen Adams <sra@google.com>
1 parent e94fed9 commit 762f049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/compiler/lib/src/ssa/optimize.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1359,7 +1359,7 @@ class SsaInstructionSimplifier extends HBaseVisitor
13591359

13601360
if (_options.experimentNewRti) {
13611361
AbstractValueWithPrecision checkedType =
1362-
_abstractValueDomain.createFromStaticType(fieldType);
1362+
_abstractValueDomain.createFromStaticType(fieldType, nullable: true);
13631363
if (checkedType.isPrecise &&
13641364
_abstractValueDomain
13651365
.isIn(value.instructionType, checkedType.abstractValue)

0 commit comments

Comments
 (0)