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

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

Issue 10540048: Implement 'as' operator. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Make "as" a builtin identifier. 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
Index: lib/compiler/implementation/ssa/variable_allocator.dart
diff --git a/lib/compiler/implementation/ssa/variable_allocator.dart b/lib/compiler/implementation/ssa/variable_allocator.dart
index d925b743af2d8c1e5804670cd91f37a6e4d999c7..3cec8c0da64857120cee5ee6f5ee90ecf6f98813 100644
--- a/lib/compiler/implementation/ssa/variable_allocator.dart
+++ b/lib/compiler/implementation/ssa/variable_allocator.dart
@@ -284,8 +284,8 @@ class SsaLiveIntervalBuilder extends HBaseVisitor {
});
env.removeLoopMarker(header);
-
- // Update all liveIns set to contain the liveIns of [header].
+
+ // Update all liveIns set to contain the liveIns of [header].
liveInstructions.forEach((HBasicBlock block, LiveEnvironment other) {
if (other.loopMarkers.containsKey(header)) {
env.liveInstructions.forEach((HInstruction instruction, int id) {
@@ -556,7 +556,7 @@ class SsaVariableAllocator extends HBaseVisitor {
}
return true;
}
-
+
/**
* Returns whether [instruction] dies at the instruction [at].
*/

Powered by Google App Engine
This is Rietveld 408576698