| Index: src/interpreter/bytecodes.cc
 | 
| diff --git a/src/interpreter/bytecodes.cc b/src/interpreter/bytecodes.cc
 | 
| index f58f37c770d6b4fd1165f4b2071b071a7e6b9e4c..ca831c9c363c9e30900f52909b159dc7f0f4b5d0 100644
 | 
| --- a/src/interpreter/bytecodes.cc
 | 
| +++ b/src/interpreter/bytecodes.cc
 | 
| @@ -262,8 +262,9 @@ bool Bytecodes::IsJump(Bytecode bytecode) {
 | 
|  
 | 
|  // static
 | 
|  bool Bytecodes::IsCallOrNew(Bytecode bytecode) {
 | 
| -  return bytecode == Bytecode::kCall || bytecode == Bytecode::kNew ||
 | 
| -         bytecode == Bytecode::kCallWide || bytecode == Bytecode::kNewWide;
 | 
| +  return bytecode == Bytecode::kCall || bytecode == Bytecode::kTailCall ||
 | 
| +         bytecode == Bytecode::kNew || bytecode == Bytecode::kCallWide ||
 | 
| +         bytecode == Bytecode::kTailCallWide || bytecode == Bytecode::kNewWide;
 | 
|  }
 | 
|  
 | 
|  // static
 | 
| 
 |