| Index: src/mips64/full-codegen-mips64.cc
|
| diff --git a/src/mips64/full-codegen-mips64.cc b/src/mips64/full-codegen-mips64.cc
|
| index b253ed8b3954b4fada10f38633bf48480e12e41b..da3aec2ae98a0993dd037062694fa73e880b3a71 100644
|
| --- a/src/mips64/full-codegen-mips64.cc
|
| +++ b/src/mips64/full-codegen-mips64.cc
|
| @@ -5380,6 +5380,16 @@ void FullCodeGenerator::ExitFinallyBlock() {
|
| }
|
|
|
|
|
| +void FullCodeGenerator::EnterCatchBlock() {
|
| + DCHECK(!result_register().is(a1));
|
| + ExternalReference pending_message_obj =
|
| + ExternalReference::address_of_pending_message_obj(isolate());
|
| + __ LoadRoot(a1, Heap::kTheHoleValueRootIndex);
|
| + __ li(at, Operand(pending_message_obj));
|
| + __ sd(a1, MemOperand(at));
|
| +}
|
| +
|
| +
|
| #undef __
|
|
|
|
|
|
|