| Index: pkg/compiler/lib/src/ssa/codegen.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/codegen.dart b/pkg/compiler/lib/src/ssa/codegen.dart
|
| index cd9d7c099fe3ba4e2bb35c46b0fbb9546353d57d..e15034de5112ef70a7d5a3024f4542f260933f43 100644
|
| --- a/pkg/compiler/lib/src/ssa/codegen.dart
|
| +++ b/pkg/compiler/lib/src/ssa/codegen.dart
|
| @@ -1395,6 +1395,10 @@ class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
|
| .withSourceInformation(node.sourceInformation));
|
| }
|
|
|
| + visitRemainder(HRemainder node) {
|
| + return visitInvokeBinary(node, '%');
|
| + }
|
| +
|
| visitNegate(HNegate node) => visitInvokeUnary(node, '-');
|
|
|
| visitLess(HLess node) => visitRelational(node, '<');
|
|
|