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

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

Issue 13956006: Remove insertRange. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebuild DOM (unrelated CL) and update status files. Created 7 years, 8 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/nodes.dart
diff --git a/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart b/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
index 745f48926c2d9f742d7722a811cef8925a63d26b..fdea2577661d4b4dbd09f4ebf834800e92d4b12f 100644
--- a/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
+++ b/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
@@ -659,7 +659,7 @@ class HBasicBlock extends HInstructionList {
if (index == dominatedBlocks.length) {
dominatedBlocks.add(block);
} else {
- dominatedBlocks.insertRange(index, 1, block);
+ dominatedBlocks.insert(index, block);
}
assert(block.dominator == null);
block.dominator = this;
@@ -673,7 +673,7 @@ class HBasicBlock extends HInstructionList {
if (index == dominatedBlocks.length - 1) {
dominatedBlocks.removeLast();
} else {
- dominatedBlocks.removeRange(index, 1);
+ dominatedBlocks.removeRange(index, index + 1);
}
assert(identical(block.dominator, this));
block.dominator = null;

Powered by Google App Engine
This is Rietveld 408576698