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

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

Issue 11958009: Do not track parameter types of closures, since closure calls can be generated during the emitter. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 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
Index: sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
===================================================================
--- sdk/lib/_internal/compiler/implementation/ssa/codegen.dart (revision 17130)
+++ sdk/lib/_internal/compiler/implementation/ssa/codegen.dart (working copy)
@@ -1649,11 +1649,6 @@
visitArguments(node.inputs)),
node);
world.registerDynamicInvocation(call.name, call);
- // A closure can also be invoked through [HInvokeDynamicMethod] by
- // explicitly calling the [:call:] method. Therefore, we must also
- // register types here to let the backend invalidate wrong
- // optimizations.
- backend.registerDynamicInvocation(node, call, types);
}
visitInvokeStatic(HInvokeStatic node) {

Powered by Google App Engine
This is Rietveld 408576698