Chromium Code Reviews| Index: lib/compiler/implementation/ssa/nodes.dart |
| =================================================================== |
| --- lib/compiler/implementation/ssa/nodes.dart (revision 12963) |
| +++ lib/compiler/implementation/ssa/nodes.dart (working copy) |
| @@ -581,8 +581,6 @@ |
| } |
| void addSuccessor(HBasicBlock block) { |
| - // Forward branches are only allowed to new blocks. |
| - assert(isClosed() && (block.isNew() || block.id < id)); |
|
ngeoffray
2012/09/27 15:10:05
This assert turns out not being very useful, and m
|
| if (successors.isEmpty()) { |
| successors = [block]; |
| } else { |