| Index: src/compiler/x87/instruction-selector-x87.cc
 | 
| diff --git a/src/compiler/x87/instruction-selector-x87.cc b/src/compiler/x87/instruction-selector-x87.cc
 | 
| index f6ac2120c839bbb334450b306edc5e32765bc66d..3e7ba77f59481178e9e702a629cc98bc8044dbbe 100644
 | 
| --- a/src/compiler/x87/instruction-selector-x87.cc
 | 
| +++ b/src/compiler/x87/instruction-selector-x87.cc
 | 
| @@ -1547,6 +1547,10 @@ void InstructionSelector::VisitDeoptimizeUnless(Node* node) {
 | 
|    VisitWordCompareZero(this, node, node->InputAt(0), &cont);
 | 
|  }
 | 
|  
 | 
| +void InstructionSelector::VisitTrapIf(Node* node) { UNREACHABLE(); }
 | 
| +
 | 
| +void InstructionSelector::VisitTrapUnless(Node* node) { UNREACHABLE(); }
 | 
| +
 | 
|  void InstructionSelector::VisitSwitch(Node* node, const SwitchInfo& sw) {
 | 
|    X87OperandGenerator g(this);
 | 
|    InstructionOperand value_operand = g.UseRegister(node->InputAt(0));
 | 
| 
 |