Temporarily de-activate while-loops in the top-level compiler because
it makes some debug tests fail. TBR=christian.plesner.hansen@gmail.com Review URL: http://codereview.chromium.org/371069 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3253 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
526f83d6b9
commit
5ba34775c7
@ -708,20 +708,12 @@ void CodeGenSelector::VisitSwitchStatement(SwitchStatement* stmt) {
|
||||
|
||||
|
||||
void CodeGenSelector::VisitDoWhileStatement(DoWhileStatement* stmt) {
|
||||
// We do not handle loops with breaks or continue statements in their
|
||||
// body. We will bailout when we hit those statements in the body.
|
||||
ProcessExpression(stmt->cond(), Expression::kTest);
|
||||
CHECK_BAILOUT;
|
||||
Visit(stmt->body());
|
||||
BAILOUT("DoWhileStatement");
|
||||
}
|
||||
|
||||
|
||||
void CodeGenSelector::VisitWhileStatement(WhileStatement* stmt) {
|
||||
// We do not handle loops with breaks or continue statements in their
|
||||
// body. We will bailout when we hit those statements in the body.
|
||||
ProcessExpression(stmt->cond(), Expression::kTest);
|
||||
CHECK_BAILOUT;
|
||||
Visit(stmt->body());
|
||||
BAILOUT("WhileStatement");
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user