| Index: src/compiler/arm64/instruction-selector-arm64.cc
|
| diff --git a/src/compiler/arm64/instruction-selector-arm64.cc b/src/compiler/arm64/instruction-selector-arm64.cc
|
| index e8dc563f7100ddcf492ed940689c3da33c7c87f9..5bb40cee4464c4b40d3bbe7cefcee3a1d641a353 100644
|
| --- a/src/compiler/arm64/instruction-selector-arm64.cc
|
| +++ b/src/compiler/arm64/instruction-selector-arm64.cc
|
| @@ -1477,7 +1477,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 =
|
| @@ -1490,9 +1490,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.
|
|
|