Index: src/compiler/mips64/instruction-selector-mips64.cc |
diff --git a/src/compiler/mips64/instruction-selector-mips64.cc b/src/compiler/mips64/instruction-selector-mips64.cc |
index 99a02c09bf043f9f827c293f00c27578155645d1..320ddf366dfb791d42dd1905c9e9fbfcbc116057 100644 |
--- a/src/compiler/mips64/instruction-selector-mips64.cc |
+++ b/src/compiler/mips64/instruction-selector-mips64.cc |
@@ -771,7 +771,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 = |
@@ -784,9 +784,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; |
} |
opcode |= MiscField::encode(flags); |