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

Unified Diff: dart/frog/leg/ssa/types.dart

Issue 9572041: Changes to make leg build bots green (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 10 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 | « dart/frog/leg/ssa/bailout.dart ('k') | dart/tests/co19/co19-leg.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/frog/leg/ssa/types.dart
diff --git a/dart/frog/leg/ssa/types.dart b/dart/frog/leg/ssa/types.dart
index 8adf2c1bec38fd564ba501a88517de7fad856afd..6acfe10c39385cc8f774002251eb1594e73ed73e 100644
--- a/dart/frog/leg/ssa/types.dart
+++ b/dart/frog/leg/ssa/types.dart
@@ -2,11 +2,12 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-class SsaTypePropagator extends HGraphVisitor {
+class SsaTypePropagator extends HGraphVisitor implements OptimizationPhase {
final Map<int, HInstruction> workmap;
final List<int> worklist;
final Compiler compiler;
+ final String name = 'type propagator';
SsaTypePropagator(Compiler this.compiler)
: workmap = new Map<int, HInstruction>(),
« no previous file with comments | « dart/frog/leg/ssa/bailout.dart ('k') | dart/tests/co19/co19-leg.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698