Add a pair of missing breaks to a switch statement.

Review URL: http://codereview.chromium.org/267050

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3050 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 3aaa04a1
......@@ -3005,6 +3005,7 @@ void CodeGenerator::VisitForStatement(ForStatement* node) {
loop.Jump();
}
}
break;
case DONT_KNOW:
if (test_at_bottom) {
if (node->continue_target()->is_linked()) {
......@@ -3031,6 +3032,7 @@ void CodeGenerator::VisitForStatement(ForStatement* node) {
}
}
}
break;
case ALWAYS_FALSE:
UNREACHABLE();
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment