Index: src/debug/debug.cc |
diff --git a/src/debug/debug.cc b/src/debug/debug.cc |
index 38e56ca6ca10666b0e6730627491d5c181ed7c93..a42c582d57577a7eea6894db28bee8b76ffd434f 100644 |
--- a/src/debug/debug.cc |
+++ b/src/debug/debug.cc |
@@ -233,7 +233,7 @@ BreakLocation::BytecodeArrayIterator::GetDebugBreakType() { |
return DEBUGGER_STATEMENT; |
} else if (bytecode == interpreter::Bytecode::kReturn) { |
return DEBUG_BREAK_SLOT_AT_RETURN; |
- } else if (bytecode == interpreter::Bytecode::kTailCall) { |
+ } else if (interpreter::Bytecodes::IsTailCall(bytecode)) { |
return isolate()->is_tail_call_elimination_enabled() |
? DEBUG_BREAK_SLOT_AT_TAIL_CALL |
: DEBUG_BREAK_SLOT_AT_CALL; |