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

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: Replace type with var.wq 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 94b13d772dfbca8559a2b7ba6632e3b9cf7ca258..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;

Powered by Google App Engine
This is Rietveld 408576698