Index: lib/compiler/implementation/ssa/codegen_helpers.dart |
diff --git a/lib/compiler/implementation/ssa/codegen_helpers.dart b/lib/compiler/implementation/ssa/codegen_helpers.dart |
index 830712d35cb0448abaaf02d989e6bfa5495fd50a..b747a08ab7f953bcf923bbb69097fdd88f463c73 100644 |
--- a/lib/compiler/implementation/ssa/codegen_helpers.dart |
+++ b/lib/compiler/implementation/ssa/codegen_helpers.dart |
@@ -59,9 +59,9 @@ class SsaInstructionMerger extends HBaseVisitor { |
void visitIdentity(HIdentity instruction) {} |
void visitTypeConversion(HTypeConversion instruction) { |
- if (!instruction.isChecked()) { |
+ if (!instruction.isChecked) { |
generateAtUseSite.add(instruction); |
- } else if (instruction.isCheckedModeCheck()) { |
+ } else if (instruction.isCheckedModeCheck) { |
// Checked mode checks compile to code that only use their input |
// once, so we can safely visit them and try to merge the input. |
visitInstruction(instruction); |