| Index: src/compiler/mips/instruction-selector-mips.cc
|
| diff --git a/src/compiler/mips/instruction-selector-mips.cc b/src/compiler/mips/instruction-selector-mips.cc
|
| index 9c13817556ba7b6f3ccd5712b20f4d418c869d7c..c1fd52865ff4b148a597f8fb6b364fefc364abce 100644
|
| --- a/src/compiler/mips/instruction-selector-mips.cc
|
| +++ b/src/compiler/mips/instruction-selector-mips.cc
|
| @@ -584,7 +584,7 @@ void InstructionSelector::VisitCall(Node* node, BasicBlock* handler) {
|
| }
|
|
|
| // Select the appropriate opcode based on the call type.
|
| - InstructionCode opcode;
|
| + InstructionCode opcode = kArchNop;
|
| switch (descriptor->kind()) {
|
| case CallDescriptor::kCallAddress:
|
| opcode =
|
| @@ -597,9 +597,9 @@ void InstructionSelector::VisitCall(Node* node, BasicBlock* handler) {
|
| case CallDescriptor::kCallJSFunction:
|
| opcode = kArchCallJSFunction | MiscField::encode(flags);
|
| break;
|
| - default:
|
| - UNREACHABLE();
|
| - return;
|
| + case CallDescriptor::kLazyBailout:
|
| + opcode = kArchLazyBailout | MiscField::encode(flags);
|
| + break;
|
| }
|
|
|
| // Emit the call instruction.
|
|
|