| 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 7a2b91b4b8ccaaaad1d024fb1f4827b5d339e749..6ff7ea8bc39c67eb6b8fd1adca260ebeaa3dbd51 100644
|
| --- a/pkg/compiler/lib/src/ssa/codegen.dart
|
| +++ b/pkg/compiler/lib/src/ssa/codegen.dart
|
| @@ -1410,6 +1410,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, '<');
|
|
|