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

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

Issue 10580018: Fix checked mode after r8854. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/ssa/builder.dart
diff --git a/lib/compiler/implementation/ssa/builder.dart b/lib/compiler/implementation/ssa/builder.dart
index 448be8a488704d37c1e08be49223efac6d832f33..6fbc567a1616991eb126bd961466712a4446b7a1 100644
--- a/lib/compiler/implementation/ssa/builder.dart
+++ b/lib/compiler/implementation/ssa/builder.dart
@@ -800,7 +800,7 @@ class SsaBuilder extends ResolvedVisitor implements Visitor {
* being updated in try/catch blocks, and should be
* accessed indirectly through HFieldGet and HFieldSet.
*/
- Map<Element, HParameterValue> activationVariables;
+ Map<Element, HLocalValue> activationVariables;
// We build the Ssa graph by simulating a stack machine.
List<HInstruction> stack;
@@ -824,7 +824,7 @@ class SsaBuilder extends ResolvedVisitor implements Visitor {
methodInterceptionEnabled = true,
graph = new HGraph(),
stack = new List<HInstruction>(),
- activationVariables = new Map<Element, HParameterValue>(),
+ activationVariables = new Map<Element, HLocalValue>(),
jumpTargets = new Map<TargetElement, JumpHandler>(),
parameters = new Map<Element, HParameterValue>(),
super(work.resolutionTree) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698