Chromium Code Reviews| Index: src/compiler.cc |
| diff --git a/src/compiler.cc b/src/compiler.cc |
| index 326586034fd99a85f1e385e5037d0323403de967..c0fb773c3f398946f185f14bfb8363ab18c7c804 100644 |
| --- a/src/compiler.cc |
| +++ b/src/compiler.cc |
| @@ -765,7 +765,9 @@ void CodeGenSelector::VisitTryCatchStatement(TryCatchStatement* stmt) { |
| void CodeGenSelector::VisitTryFinallyStatement(TryFinallyStatement* stmt) { |
| - BAILOUT("TryFinallyStatement"); |
| + Visit(stmt->try_block()); |
| + CHECK_BAILOUT; |
| + Visit(stmt->finally_block()); |
| } |