Index: pkg/compiler/lib/src/ssa/builder.dart |
diff --git a/pkg/compiler/lib/src/ssa/builder.dart b/pkg/compiler/lib/src/ssa/builder.dart |
index 3db52243d2c9f397f7fb24c8331f46a232b53fe8..824d774577855c7daaea1041ae672ce530beadf4 100644 |
--- a/pkg/compiler/lib/src/ssa/builder.dart |
+++ b/pkg/compiler/lib/src/ssa/builder.dart |
@@ -3623,16 +3623,9 @@ class SsaBuilder extends ast.Visitor |
List<HInstruction> inputs = makeStaticArgumentList( |
callStructure, node.arguments, function.implementation); |
- if (function == compiler.commonElements.identicalFunction) { |
- pushWithPosition( |
- new HIdentity(inputs[0], inputs[1], null, commonMasks.boolType), |
- node); |
- return; |
- } else { |
- pushInvokeStatic(node, function, inputs, |
- sourceInformation: |
- sourceInformationBuilder.buildCall(node, node.selector)); |
- } |
+ pushInvokeStatic(node, function, inputs, |
+ sourceInformation: |
+ sourceInformationBuilder.buildCall(node, node.selector)); |
} |
/// Generate an invocation to a static or top level function with the wrong |