| Index: src/full-codegen.cc
|
| diff --git a/src/full-codegen.cc b/src/full-codegen.cc
|
| index 73362619935159ce6e96c4cc47b3582baf754946..758bfe72147fed7bae368cf0f2a947360a68c521 100644
|
| --- a/src/full-codegen.cc
|
| +++ b/src/full-codegen.cc
|
| @@ -1430,10 +1430,12 @@ void FullCodeGenerator::VisitTryCatchStatement(TryCatchStatement* stmt) {
|
| // Try block code. Sets up the exception handler chain.
|
| __ bind(&try_entry);
|
| __ PushTryHandler(StackHandler::CATCH, stmt->index());
|
| + PrepareForBailoutForId(stmt->TryEntryId(), NO_REGISTERS);
|
| { TryCatch try_body(this);
|
| Visit(stmt->try_block());
|
| }
|
| __ PopTryHandler();
|
| + PrepareForBailoutForId(stmt->TryExitId(), NO_REGISTERS);
|
| __ bind(&exit);
|
| }
|
|
|
|
|