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 255186ce8f2cf3dbbc70ff919260b7987bbf5a27..e15324f6e69091c94090c25c9b3e57d1f779d0b7 100644 |
--- a/src/compiler/arm64/instruction-selector-arm64.cc |
+++ b/src/compiler/arm64/instruction-selector-arm64.cc |
@@ -2546,9 +2546,14 @@ void InstructionSelector::VisitDeoptimizeUnless(Node* node) { |
VisitWordCompareZero(this, node, node->InputAt(0), &cont); |
} |
-void InstructionSelector::VisitTrapIf(Node* node) { UNREACHABLE(); } |
+void InstructionSelector::VisitTrapIf(Node* node, Runtime::FunctionId func_id) { |
+ UNREACHABLE(); |
+} |
-void InstructionSelector::VisitTrapUnless(Node* node) { UNREACHABLE(); } |
+void InstructionSelector::VisitTrapUnless(Node* node, |
+ Runtime::FunctionId func_id) { |
+ UNREACHABLE(); |
+} |
void InstructionSelector::VisitSwitch(Node* node, const SwitchInfo& sw) { |
Arm64OperandGenerator g(this); |