Index: src/compiler/x64/instruction-selector-x64.cc |
diff --git a/src/compiler/x64/instruction-selector-x64.cc b/src/compiler/x64/instruction-selector-x64.cc |
index 516a9a7691ca0d7c2ba9c33a47857bc07dec48e3..45223eaefe1a520f1d7ce8bcddc6ad655358f970 100644 |
--- a/src/compiler/x64/instruction-selector-x64.cc |
+++ b/src/compiler/x64/instruction-selector-x64.cc |
@@ -1133,9 +1133,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. |