Index: src/compiler/instruction-selector.cc |
diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc |
index e4fe3722e6adb3ed17c6f849ce272d9d72e1b2bd..a917328650a45af6e39bc1b3033e3ec2cad893b1 100644 |
--- a/src/compiler/instruction-selector.cc |
+++ b/src/compiler/instruction-selector.cc |
@@ -1637,6 +1637,9 @@ void InstructionSelector::VisitTailCall(Node* node) { |
case CallDescriptor::kCallJSFunction: |
opcode = kArchTailCallJSFunction; |
break; |
+ case CallDescriptor::kCallAddress: |
+ opcode = kArchTailCallAddress; |
+ break; |
default: |
UNREACHABLE(); |
return; |