Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(839)

Unified Diff: lib/compiler/implementation/ssa/codegen.dart

Issue 10879007: Fix issue 4639 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/compiler/implementation/ssa/nodes.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/ssa/codegen.dart
diff --git a/lib/compiler/implementation/ssa/codegen.dart b/lib/compiler/implementation/ssa/codegen.dart
index 9cfe2dbc9c2456278896de74881c55b1022fb402..2761f9df0fc6b414aec9dabf2d64cbf114bc9cae 100644
--- a/lib/compiler/implementation/ssa/codegen.dart
+++ b/lib/compiler/implementation/ssa/codegen.dart
@@ -1493,7 +1493,8 @@ class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
visitInvokeStatic(HInvokeStatic node) {
if (Elements.isStaticOrTopLevelFunction(node.element) &&
- node.typeCode() == HInvokeStatic.INVOKE_STATIC_TYPECODE) {
+ (node.typeCode() == HInvokeStatic.INVOKE_STATIC_TYPECODE ||
+ node.typeCode() == HInvokeStatic.INVOKE_INTERCEPTOR_TYPECODE)) {
// Register this invocation to collect the types used at all call sites.
backend.registerStaticInvocation(node, types);
}
« no previous file with comments | « no previous file | lib/compiler/implementation/ssa/nodes.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698