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 1b525dfaedc1451ee6104217c16130d1b6938c90..d34d951005d0d3a52a79fde39f961bb61911eac6 100644 |
--- a/src/compiler/mips64/instruction-selector-mips64.cc |
+++ b/src/compiler/mips64/instruction-selector-mips64.cc |
@@ -2283,9 +2283,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) { |
Mips64OperandGenerator g(this); |