| Index: src/full-codegen.cc
|
| diff --git a/src/full-codegen.cc b/src/full-codegen.cc
|
| index fc7b6899bcbffb29127b009fe5ffceff22ff3908..ca2026bb014fd349a81d551096de837cf3d1d1b0 100644
|
| --- a/src/full-codegen.cc
|
| +++ b/src/full-codegen.cc
|
| @@ -1336,25 +1336,6 @@ void FullCodeGenerator::VisitThrow(Throw* expr) {
|
| }
|
|
|
|
|
| -FullCodeGenerator::NestedStatement* FullCodeGenerator::TryFinally::Exit(
|
| - int* stack_depth,
|
| - int* context_length) {
|
| - // The macros used here must preserve the result register.
|
| - __ Drop(*stack_depth);
|
| - __ PopTryHandler();
|
| - *stack_depth = 0;
|
| -
|
| - Register context = FullCodeGenerator::context_register();
|
| - while (*context_length > 0) {
|
| - codegen_->LoadContextField(context, Context::PREVIOUS_INDEX);
|
| - --(*context_length);
|
| - }
|
| -
|
| - __ Call(finally_entry_);
|
| - return previous_;
|
| -}
|
| -
|
| -
|
| FullCodeGenerator::NestedStatement* FullCodeGenerator::TryCatch::Exit(
|
| int* stack_depth,
|
| int* context_length) {
|
|
|